@tedi-design-system/angular 7.0.0-rc.2 → 7.0.0-rc.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/tedi-design-system-angular-community.mjs +2 -2
- package/fesm2022/tedi-design-system-angular-community.mjs.map +1 -1
- package/fesm2022/tedi-design-system-angular-tedi.mjs +370 -218
- package/fesm2022/tedi-design-system-angular-tedi.mjs.map +1 -1
- package/index.css +1 -1
- package/package.json +2 -2
- package/tedi/index.d.ts +285 -127
- package/tedi/index.d.ts.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tedi-design-system/angular",
|
|
3
|
-
"version": "7.0.0-rc.
|
|
3
|
+
"version": "7.0.0-rc.4",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "community.mjs",
|
|
6
6
|
"module": "fesm2022/tedi-design-system-angular.mjs",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@tanstack/angular-table": "^8.21.4",
|
|
36
|
-
"@tedi-design-system/core": "^6.4.
|
|
36
|
+
"@tedi-design-system/core": "^6.4.3",
|
|
37
37
|
"tslib": "^2.3.0"
|
|
38
38
|
},
|
|
39
39
|
"commitlint": {
|
package/tedi/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import * as _angular_core from '@angular/core';
|
|
2
|
-
import { AfterContentChecked, AfterViewInit, InputSignal, Signal, PipeTransform, ElementRef, TemplateRef,
|
|
2
|
+
import { AfterContentChecked, AfterViewInit, InputSignal, Signal, PipeTransform, OnInit, OnDestroy, ElementRef, TemplateRef, Injector, InjectionToken, WritableSignal, AfterViewChecked, AfterContentInit, QueryList, EnvironmentProviders } from '@angular/core';
|
|
3
|
+
import { _IdGenerator } from '@angular/cdk/a11y';
|
|
3
4
|
import * as _tedi_design_system_angular_tedi from '@tedi-design-system/angular/tedi';
|
|
4
5
|
import { ControlValueAccessor, NgControl } from '@angular/forms';
|
|
5
6
|
import * as _tanstack_table_core from '@tanstack/table-core';
|
|
@@ -7,7 +8,6 @@ import { CdkDragDrop } from '@angular/cdk/drag-drop';
|
|
|
7
8
|
import { Table, VisibilityState, ColumnOrderState, ColumnSizingState, RowSelectionState, ExpandedState, ColumnFiltersState, SortingState, PaginationState, ColumnDef, CellContext, Row, Column } from '@tanstack/angular-table';
|
|
8
9
|
import * as _angular_cdk_overlay from '@angular/cdk/overlay';
|
|
9
10
|
import { ConnectedOverlayPositionChange, ConnectedPosition, CdkOverlayOrigin, CdkConnectedOverlay } from '@angular/cdk/overlay';
|
|
10
|
-
import { _IdGenerator } from '@angular/cdk/a11y';
|
|
11
11
|
import { CdkListbox } from '@angular/cdk/listbox';
|
|
12
12
|
import { Observable } from 'rxjs';
|
|
13
13
|
import { DialogRef } from '@angular/cdk/dialog';
|
|
@@ -1622,6 +1622,7 @@ type AlertRole = "alert" | "status" | "none";
|
|
|
1622
1622
|
type AlertType = "info" | "success" | "warning" | "danger";
|
|
1623
1623
|
type AlertTitleType = "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "div";
|
|
1624
1624
|
type AlertVariant = "default" | "global" | "noSideBorders";
|
|
1625
|
+
type AlertSize = "default" | "small";
|
|
1625
1626
|
declare class AlertComponent {
|
|
1626
1627
|
/**
|
|
1627
1628
|
* An optional title for the alert, typically used to summarize the message's purpose.
|
|
@@ -1661,6 +1662,13 @@ declare class AlertComponent {
|
|
|
1661
1662
|
* For example, 'global' for full-width alerts or 'noSideBorders' for alerts without side borders.
|
|
1662
1663
|
*/
|
|
1663
1664
|
variant: _angular_core.InputSignal<AlertVariant>;
|
|
1665
|
+
/**
|
|
1666
|
+
* Alert size variant.
|
|
1667
|
+
* - 'default': standard padding and body text size.
|
|
1668
|
+
* - 'small': reduced padding and smaller body text.
|
|
1669
|
+
* @default default
|
|
1670
|
+
*/
|
|
1671
|
+
size: _angular_core.InputSignal<AlertSize>;
|
|
1664
1672
|
/**
|
|
1665
1673
|
* The HTML tag to be used for the alert title.
|
|
1666
1674
|
* @default h2
|
|
@@ -1690,7 +1698,7 @@ declare class AlertComponent {
|
|
|
1690
1698
|
}>;
|
|
1691
1699
|
handleClose(): void;
|
|
1692
1700
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AlertComponent, never>;
|
|
1693
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AlertComponent, "tedi-alert", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "showClose": { "alias": "showClose"; "required": false; "isSignal": true; }; "role": { "alias": "role"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "titleElement": { "alias": "titleElement"; "required": false; "isSignal": true; }; "open": { "alias": "open"; "required": false; "isSignal": true; }; "closeDelay": { "alias": "closeDelay"; "required": false; "isSignal": true; }; }, { "open": "openChange"; "closeClick": "closeClick"; }, never, ["[tedi-alert-action]", "*"], true, never>;
|
|
1701
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AlertComponent, "tedi-alert", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "showClose": { "alias": "showClose"; "required": false; "isSignal": true; }; "role": { "alias": "role"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "titleElement": { "alias": "titleElement"; "required": false; "isSignal": true; }; "open": { "alias": "open"; "required": false; "isSignal": true; }; "closeDelay": { "alias": "closeDelay"; "required": false; "isSignal": true; }; }, { "open": "openChange"; "closeClick": "closeClick"; }, never, ["[tedi-alert-action]", "*"], true, never>;
|
|
1694
1702
|
}
|
|
1695
1703
|
|
|
1696
1704
|
declare const TOAST_DEFAULT_DURATION = 6000;
|
|
@@ -1902,9 +1910,14 @@ declare class InfoButtonComponent {
|
|
|
1902
1910
|
* InfoButton ARIA label
|
|
1903
1911
|
*/
|
|
1904
1912
|
readonly ariaLabel: _angular_core.InputSignal<string | undefined>;
|
|
1913
|
+
/**
|
|
1914
|
+
* Color variant. Use `inverted` on dark or colored backgrounds.
|
|
1915
|
+
* @default primary
|
|
1916
|
+
*/
|
|
1917
|
+
readonly color: _angular_core.InputSignal<"primary" | "inverted">;
|
|
1905
1918
|
private readonly _defaultLabel;
|
|
1906
1919
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<InfoButtonComponent, never>;
|
|
1907
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<InfoButtonComponent, "button[tedi-info-button]", never, { "ariaLabel": { "alias": "aria-label"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1920
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<InfoButtonComponent, "button[tedi-info-button]", never, { "ariaLabel": { "alias": "aria-label"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1908
1921
|
}
|
|
1909
1922
|
|
|
1910
1923
|
type CollapseButtonArrowType = "default" | "secondary";
|
|
@@ -1947,6 +1960,12 @@ declare class CollapseButtonComponent {
|
|
|
1947
1960
|
* @default false
|
|
1948
1961
|
*/
|
|
1949
1962
|
inverted: _angular_core.InputSignal<boolean>;
|
|
1963
|
+
/**
|
|
1964
|
+
* Whether to underline the text label.
|
|
1965
|
+
* Has no effect in icon-only mode.
|
|
1966
|
+
* @default true
|
|
1967
|
+
*/
|
|
1968
|
+
underline: _angular_core.InputSignal<boolean>;
|
|
1950
1969
|
/**
|
|
1951
1970
|
* ID of the disclosed region. Forwarded to `aria-controls`.
|
|
1952
1971
|
*/
|
|
@@ -1978,7 +1997,7 @@ declare class CollapseButtonComponent {
|
|
|
1978
1997
|
protected readonly hostClasses: _angular_core.Signal<string>;
|
|
1979
1998
|
protected toggle(): void;
|
|
1980
1999
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CollapseButtonComponent, never>;
|
|
1981
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<CollapseButtonComponent, "button[tedi-collapse-button]", never, { "open": { "alias": "open"; "required": false; "isSignal": true; }; "openText": { "alias": "openText"; "required": false; "isSignal": true; }; "closeText": { "alias": "closeText"; "required": false; "isSignal": true; }; "hideText": { "alias": "hideText"; "required": false; "isSignal": true; }; "arrowType": { "alias": "arrowType"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "inverted": { "alias": "inverted"; "required": false; "isSignal": true; }; "ariaControls": { "alias": "ariaControls"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; }, { "openChange": "openChange"; }, never, never, true, never>;
|
|
2000
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<CollapseButtonComponent, "button[tedi-collapse-button]", never, { "open": { "alias": "open"; "required": false; "isSignal": true; }; "openText": { "alias": "openText"; "required": false; "isSignal": true; }; "closeText": { "alias": "closeText"; "required": false; "isSignal": true; }; "hideText": { "alias": "hideText"; "required": false; "isSignal": true; }; "arrowType": { "alias": "arrowType"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "inverted": { "alias": "inverted"; "required": false; "isSignal": true; }; "underline": { "alias": "underline"; "required": false; "isSignal": true; }; "ariaControls": { "alias": "ariaControls"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; }, { "openChange": "openChange"; }, never, never, true, never>;
|
|
1982
2001
|
}
|
|
1983
2002
|
|
|
1984
2003
|
type ArrowType = CollapseButtonArrowType;
|
|
@@ -2074,6 +2093,257 @@ declare class ClosingButtonComponent {
|
|
|
2074
2093
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ClosingButtonComponent, "button[tedi-closing-button]", never, { "size": { "alias": "size"; "required": false; "isSignal": true; }; "iconSize": { "alias": "iconSize"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "showTitle": { "alias": "showTitle"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
2075
2094
|
}
|
|
2076
2095
|
|
|
2096
|
+
/**
|
|
2097
|
+
* A single item inside a `tedi-accordion`. Owns the item's state (expanded)
|
|
2098
|
+
* and the inputs shared by header and content (selected, showIconCard,
|
|
2099
|
+
* defaultExpanded, disabled).
|
|
2100
|
+
*
|
|
2101
|
+
* Header-related configuration lives on `tedi-accordion-item-header`; body
|
|
2102
|
+
* styling lives on `tedi-accordion-item-content`.
|
|
2103
|
+
*
|
|
2104
|
+
* Use together with the header and content children:
|
|
2105
|
+
*
|
|
2106
|
+
* ```html
|
|
2107
|
+
* <tedi-accordion-item>
|
|
2108
|
+
* <tedi-accordion-item-header>
|
|
2109
|
+
* <span tedi-accordion-title>Title</span>
|
|
2110
|
+
* </tedi-accordion-item-header>
|
|
2111
|
+
* <tedi-accordion-item-content>Content</tedi-accordion-item-content>
|
|
2112
|
+
* </tedi-accordion-item>
|
|
2113
|
+
* ```
|
|
2114
|
+
*
|
|
2115
|
+
* The optional `[tedi-accordion-icon-card]` slot is projected as a direct
|
|
2116
|
+
* child of the item (not inside the header), because it occupies its own
|
|
2117
|
+
* column in the item's grid layout.
|
|
2118
|
+
*/
|
|
2119
|
+
declare class AccordionItemComponent implements OnInit, OnDestroy {
|
|
2120
|
+
readonly idGenerator: _IdGenerator;
|
|
2121
|
+
readonly contentId: string;
|
|
2122
|
+
readonly headerId: string;
|
|
2123
|
+
/**
|
|
2124
|
+
* Whether the accordion item is expanded initially.
|
|
2125
|
+
* Does not control the expanded state after initialization.
|
|
2126
|
+
*
|
|
2127
|
+
* When omitted, falls back to the parent `tedi-accordion`'s `defaultExpanded`
|
|
2128
|
+
* (or `false`). Pass an explicit boolean to override the group default —
|
|
2129
|
+
* including `false` to keep an individual item collapsed when the group
|
|
2130
|
+
* default is `true`.
|
|
2131
|
+
*/
|
|
2132
|
+
defaultExpanded: _angular_core.InputSignal<boolean | undefined>;
|
|
2133
|
+
/**
|
|
2134
|
+
* Enables the icon-card layout variant. Affects both header and content
|
|
2135
|
+
* styling, so it lives on the item.
|
|
2136
|
+
*/
|
|
2137
|
+
showIconCard: _angular_core.InputSignal<boolean>;
|
|
2138
|
+
/**
|
|
2139
|
+
* Marks the accordion item as selected.
|
|
2140
|
+
*/
|
|
2141
|
+
selected: _angular_core.InputSignal<boolean>;
|
|
2142
|
+
/**
|
|
2143
|
+
* Disables the item — the header trigger becomes non-interactive and the
|
|
2144
|
+
* expanded state can no longer be toggled by user interaction. The current
|
|
2145
|
+
* state is preserved (e.g. a disabled item that's `defaultExpanded` stays open).
|
|
2146
|
+
*/
|
|
2147
|
+
disabled: _angular_core.InputSignal<boolean>;
|
|
2148
|
+
/**
|
|
2149
|
+
* Stable id used for hash-based deep-linking. Pair with `openOnHashMatch`.
|
|
2150
|
+
* Not the same as the auto-generated `headerId` / `contentId` used for ARIA.
|
|
2151
|
+
*/
|
|
2152
|
+
itemId: _angular_core.InputSignal<string | undefined>;
|
|
2153
|
+
/**
|
|
2154
|
+
* When `true`, auto-expands the item if `window.location.hash` matches
|
|
2155
|
+
* `itemId` (e.g. `https://example.com/page#my-item`). Re-runs on
|
|
2156
|
+
* `hashchange` so navigating between in-page links updates which item is
|
|
2157
|
+
* open. No-op when `itemId` is omitted or the item is disabled.
|
|
2158
|
+
*/
|
|
2159
|
+
openOnHashMatch: _angular_core.InputSignal<boolean>;
|
|
2160
|
+
expanded: _angular_core.ModelSignal<boolean>;
|
|
2161
|
+
private readonly accordion;
|
|
2162
|
+
private hashChangeHandler?;
|
|
2163
|
+
ngOnInit(): void;
|
|
2164
|
+
ngOnDestroy(): void;
|
|
2165
|
+
toggle(): void;
|
|
2166
|
+
setExpanded(value: boolean): void;
|
|
2167
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AccordionItemComponent, never>;
|
|
2168
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AccordionItemComponent, "tedi-accordion-item", never, { "defaultExpanded": { "alias": "defaultExpanded"; "required": false; "isSignal": true; }; "showIconCard": { "alias": "showIconCard"; "required": false; "isSignal": true; }; "selected": { "alias": "selected"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "itemId": { "alias": "itemId"; "required": false; "isSignal": true; }; "openOnHashMatch": { "alias": "openOnHashMatch"; "required": false; "isSignal": true; }; "expanded": { "alias": "expanded"; "required": false; "isSignal": true; }; }, { "expanded": "expandedChange"; }, never, ["[tedi-accordion-icon-card]", "tedi-accordion-item-header", "tedi-accordion-item-content"], true, never>;
|
|
2169
|
+
}
|
|
2170
|
+
|
|
2171
|
+
/**
|
|
2172
|
+
* Breakpoint-aware inputs of the Accordion. Consumers can override each of
|
|
2173
|
+
* these per breakpoint via the `xs` / `sm` / `md` / `lg` / `xl` / `xxl` inputs:
|
|
2174
|
+
*
|
|
2175
|
+
* ```html
|
|
2176
|
+
* <tedi-accordion
|
|
2177
|
+
* [allowMultiple]="false"
|
|
2178
|
+
* [lg]="{ allowMultiple: true }"
|
|
2179
|
+
* >...</tedi-accordion>
|
|
2180
|
+
* ```
|
|
2181
|
+
*/
|
|
2182
|
+
type AccordionInputs = {
|
|
2183
|
+
/**
|
|
2184
|
+
* Whether the accordion allows multiple items to be expanded at the same
|
|
2185
|
+
* time. If false, opening one item collapses the others automatically.
|
|
2186
|
+
* @default false
|
|
2187
|
+
*/
|
|
2188
|
+
allowMultiple: boolean;
|
|
2189
|
+
/**
|
|
2190
|
+
* Group-level default for items' initial expanded state. Sets the initial
|
|
2191
|
+
* `defaultExpanded` for every child `tedi-accordion-item` that doesn't
|
|
2192
|
+
* specify its own. Per-item `defaultExpanded` (including an explicit
|
|
2193
|
+
* `false`) takes precedence.
|
|
2194
|
+
*
|
|
2195
|
+
* Typically combined with `allowMultiple` to start with all items open.
|
|
2196
|
+
*/
|
|
2197
|
+
defaultExpanded?: boolean;
|
|
2198
|
+
/**
|
|
2199
|
+
* Vertical gap between sibling `tedi-accordion-item` components, in **rem**
|
|
2200
|
+
* (so the value scales with the user's font-size preferences and matches
|
|
2201
|
+
* the rest of TEDI's layout spacing convention). Accepts any number, not
|
|
2202
|
+
* limited to a fixed scale.
|
|
2203
|
+
*
|
|
2204
|
+
* Forwarded as the `--tedi-accordion-item-gap` CSS variable, so consumers
|
|
2205
|
+
* can also override it from any ancestor class — or set a px value there
|
|
2206
|
+
* directly when an exact-pixel override is needed.
|
|
2207
|
+
*
|
|
2208
|
+
* When omitted, falls back to the design-token default
|
|
2209
|
+
* (`var(--layout-grid-gutters-08)` = 0.5rem).
|
|
2210
|
+
*/
|
|
2211
|
+
itemGap?: number;
|
|
2212
|
+
};
|
|
2213
|
+
declare class AccordionComponent implements BreakpointInputs<AccordionInputs> {
|
|
2214
|
+
allowMultiple: _angular_core.InputSignal<boolean>;
|
|
2215
|
+
defaultExpanded: _angular_core.InputSignal<boolean | undefined>;
|
|
2216
|
+
itemGap: _angular_core.InputSignal<number | undefined>;
|
|
2217
|
+
xs: _angular_core.InputSignal<AccordionInputs | undefined>;
|
|
2218
|
+
sm: _angular_core.InputSignal<AccordionInputs | undefined>;
|
|
2219
|
+
md: _angular_core.InputSignal<AccordionInputs | undefined>;
|
|
2220
|
+
lg: _angular_core.InputSignal<AccordionInputs | undefined>;
|
|
2221
|
+
xl: _angular_core.InputSignal<AccordionInputs | undefined>;
|
|
2222
|
+
xxl: _angular_core.InputSignal<AccordionInputs | undefined>;
|
|
2223
|
+
private readonly breakpointService;
|
|
2224
|
+
breakpointInputs: _angular_core.Signal<AccordionInputs>;
|
|
2225
|
+
protected readonly itemGapStyle: _angular_core.Signal<string | null>;
|
|
2226
|
+
items: _angular_core.Signal<readonly AccordionItemComponent[]>;
|
|
2227
|
+
onItemToggled(activeItem: AccordionItemComponent): void;
|
|
2228
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AccordionComponent, never>;
|
|
2229
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AccordionComponent, "tedi-accordion", never, { "allowMultiple": { "alias": "allowMultiple"; "required": false; "isSignal": true; }; "defaultExpanded": { "alias": "defaultExpanded"; "required": false; "isSignal": true; }; "itemGap": { "alias": "itemGap"; "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; }; }, {}, ["items"], ["*"], true, never>;
|
|
2230
|
+
}
|
|
2231
|
+
|
|
2232
|
+
declare class AccordionItemHeaderComponent {
|
|
2233
|
+
protected readonly item: AccordionItemComponent;
|
|
2234
|
+
private readonly translationService;
|
|
2235
|
+
private readonly defaultOpenLabel;
|
|
2236
|
+
private readonly defaultCloseLabel;
|
|
2237
|
+
/**
|
|
2238
|
+
* If false, disables header toggling and enables using interactive elements in the accordion header.
|
|
2239
|
+
*/
|
|
2240
|
+
headerClickable: _angular_core.InputSignal<boolean>;
|
|
2241
|
+
/**
|
|
2242
|
+
* Sets how the accordion title stretches horizontally.
|
|
2243
|
+
* `hug` - container sizes to its content.
|
|
2244
|
+
* `fill` - container expands to available space, moving any trailing elements to the end.
|
|
2245
|
+
*/
|
|
2246
|
+
titleLayout: _angular_core.InputSignal<"fill" | "hug">;
|
|
2247
|
+
/**
|
|
2248
|
+
* Text shown when accordion is collapsed. Rendered literally — translate
|
|
2249
|
+
* at the call site if needed. When omitted, falls back to the translated
|
|
2250
|
+
* `"open"` label from `TediTranslationService`.
|
|
2251
|
+
*/
|
|
2252
|
+
openText: _angular_core.InputSignal<string | undefined>;
|
|
2253
|
+
/**
|
|
2254
|
+
* Text shown when accordion is expanded. Rendered literally — translate
|
|
2255
|
+
* at the call site if needed. When omitted, falls back to the translated
|
|
2256
|
+
* `"close"` label from `TediTranslationService`.
|
|
2257
|
+
*/
|
|
2258
|
+
closeText: _angular_core.InputSignal<string | undefined>;
|
|
2259
|
+
/**
|
|
2260
|
+
* Controls whether the expand/collapse label is shown.
|
|
2261
|
+
*/
|
|
2262
|
+
showExpandLabel: _angular_core.InputSignal<boolean>;
|
|
2263
|
+
/**
|
|
2264
|
+
* Controls whether the default expand/collapse action is shown.
|
|
2265
|
+
*/
|
|
2266
|
+
showDefaultExpandAction: _angular_core.InputSignal<boolean>;
|
|
2267
|
+
/**
|
|
2268
|
+
* Position of the expand action relative to the header content.
|
|
2269
|
+
*/
|
|
2270
|
+
expandActionPosition: _angular_core.InputSignal<"start" | "end">;
|
|
2271
|
+
/**
|
|
2272
|
+
* Custom CSS classes for the accordion header.
|
|
2273
|
+
*/
|
|
2274
|
+
headerClass: _angular_core.InputSignal<string | null>;
|
|
2275
|
+
/**
|
|
2276
|
+
* When set, wraps the header trigger in a semantic `<h1>`–`<h6>` element
|
|
2277
|
+
* following the WAI-ARIA Accordion Pattern. Improves accessibility for
|
|
2278
|
+
* documents with a heading hierarchy (FAQ pages, docs). The wrapper uses
|
|
2279
|
+
* `display: contents` so it doesn't affect the visual layout — it only adds
|
|
2280
|
+
* semantic information for assistive technologies and TOC tools.
|
|
2281
|
+
*/
|
|
2282
|
+
headingLevel: _angular_core.InputSignal<1 | 3 | 5 | 4 | 2 | 6 | undefined>;
|
|
2283
|
+
/**
|
|
2284
|
+
* Chevron style of the default expand action.
|
|
2285
|
+
* Only effective when `headerClickable` is `false` (otherwise the
|
|
2286
|
+
* default expand action isn't a `CollapseButton`) and `showExpandLabel`
|
|
2287
|
+
* is `false` (only icon-only mode honours `arrowType` — see the
|
|
2288
|
+
* `CollapseButton` docs).
|
|
2289
|
+
* @default "default"
|
|
2290
|
+
*/
|
|
2291
|
+
expandActionArrowType: _angular_core.InputSignal<CollapseButtonArrowType>;
|
|
2292
|
+
/**
|
|
2293
|
+
* Visual size of the default expand action. Only effective when
|
|
2294
|
+
* `headerClickable` is `false`.
|
|
2295
|
+
*
|
|
2296
|
+
* When omitted, the size is derived from `showExpandLabel`:
|
|
2297
|
+
* - `showExpandLabel === true` → `"default"`
|
|
2298
|
+
* - `showExpandLabel === false` → `"small"` (icon-only mode reads
|
|
2299
|
+
* better at the smaller chevron size).
|
|
2300
|
+
*
|
|
2301
|
+
* Pass an explicit value to override the derived default.
|
|
2302
|
+
*/
|
|
2303
|
+
expandActionSize: _angular_core.InputSignal<CollapseButtonSize | undefined>;
|
|
2304
|
+
/**
|
|
2305
|
+
* Use the inverted (light-on-dark) palette for the default expand
|
|
2306
|
+
* action, for placement on a dark or brand background. Only effective
|
|
2307
|
+
* when `headerClickable` is `false`.
|
|
2308
|
+
* @default false
|
|
2309
|
+
*/
|
|
2310
|
+
expandActionInverted: _angular_core.InputSignal<boolean>;
|
|
2311
|
+
/**
|
|
2312
|
+
* Whether the default expand action's label is underlined. Defaults to
|
|
2313
|
+
* `false` so the chevron stays the sole affordance — an underlined
|
|
2314
|
+
* label inside the accordion header reads as a stray link. Set to
|
|
2315
|
+
* `true` for contexts that want link-style styling. Only effective
|
|
2316
|
+
* when `headerClickable` is `false` and the expand action is not in
|
|
2317
|
+
* icon-only mode (i.e. `showExpandLabel` is `true`).
|
|
2318
|
+
* @default false
|
|
2319
|
+
*/
|
|
2320
|
+
expandActionUnderline: _angular_core.InputSignal<boolean>;
|
|
2321
|
+
readonly headerId: string;
|
|
2322
|
+
readonly contentId: string;
|
|
2323
|
+
readonly expanded: _angular_core.ModelSignal<boolean>;
|
|
2324
|
+
readonly disabled: _angular_core.Signal<boolean>;
|
|
2325
|
+
readonly expandLabel: _angular_core.Signal<string>;
|
|
2326
|
+
readonly showStartExpandAction: _angular_core.Signal<boolean>;
|
|
2327
|
+
readonly showEndExpandAction: _angular_core.Signal<boolean>;
|
|
2328
|
+
readonly resolvedExpandActionSize: _angular_core.Signal<CollapseButtonSize>;
|
|
2329
|
+
toggle(): void;
|
|
2330
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AccordionItemHeaderComponent, never>;
|
|
2331
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AccordionItemHeaderComponent, "tedi-accordion-item-header", never, { "headerClickable": { "alias": "headerClickable"; "required": false; "isSignal": true; }; "titleLayout": { "alias": "titleLayout"; "required": false; "isSignal": true; }; "openText": { "alias": "openText"; "required": false; "isSignal": true; }; "closeText": { "alias": "closeText"; "required": false; "isSignal": true; }; "showExpandLabel": { "alias": "showExpandLabel"; "required": false; "isSignal": true; }; "showDefaultExpandAction": { "alias": "showDefaultExpandAction"; "required": false; "isSignal": true; }; "expandActionPosition": { "alias": "expandActionPosition"; "required": false; "isSignal": true; }; "headerClass": { "alias": "headerClass"; "required": false; "isSignal": true; }; "headingLevel": { "alias": "headingLevel"; "required": false; "isSignal": true; }; "expandActionArrowType": { "alias": "expandActionArrowType"; "required": false; "isSignal": true; }; "expandActionSize": { "alias": "expandActionSize"; "required": false; "isSignal": true; }; "expandActionInverted": { "alias": "expandActionInverted"; "required": false; "isSignal": true; }; "expandActionUnderline": { "alias": "expandActionUnderline"; "required": false; "isSignal": true; }; }, {}, never, ["[tedi-accordion-start-action]", "[tedi-accordion-before-title]", "[tedi-accordion-title]", "[tedi-accordion-start-description]", "[tedi-accordion-after-title]", "[tedi-accordion-end-description]", "[tedi-accordion-end-action]"], true, never>;
|
|
2332
|
+
}
|
|
2333
|
+
|
|
2334
|
+
declare class AccordionItemContentComponent {
|
|
2335
|
+
protected readonly item: AccordionItemComponent;
|
|
2336
|
+
/**
|
|
2337
|
+
* Custom CSS classes for the accordion content.
|
|
2338
|
+
*/
|
|
2339
|
+
contentClass: _angular_core.InputSignal<string | null>;
|
|
2340
|
+
readonly headerId: string;
|
|
2341
|
+
readonly contentId: string;
|
|
2342
|
+
readonly expanded: _angular_core.ModelSignal<boolean>;
|
|
2343
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AccordionItemContentComponent, never>;
|
|
2344
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AccordionItemContentComponent, "tedi-accordion-item-content", never, { "contentClass": { "alias": "contentClass"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
2345
|
+
}
|
|
2346
|
+
|
|
2077
2347
|
type CardBorderPlacement = "top" | "left";
|
|
2078
2348
|
type CardBackground = "primary" | "secondary" | "tertiary" | "accent" | "brand-primary" | "brand-secondary" | "brand-tertiary" | "brand-quaternary" | "danger-primary" | "danger-secondary" | "success-primary" | "success-secondary" | "info-primary" | "info-secondary" | "warning-primary" | "warning-secondary" | "neutral-primary" | "neutral-secondary";
|
|
2079
2349
|
type CardBorderType = `${CardBorderPlacement}-${CardBackground}` | CardBackground;
|
|
@@ -6792,6 +7062,10 @@ type SeparatorDotSize = "large" | "medium" | "small" | "extra-small";
|
|
|
6792
7062
|
type SeparatorThickness = 1 | 2;
|
|
6793
7063
|
type SeparatorSpacingValue = 0 | 0.25 | 0.5 | 0.75 | 1 | 1.25 | 1.5 | 1.75 | 2 | 2.5 | 5;
|
|
6794
7064
|
type SeparatorSpacing = {
|
|
7065
|
+
/** Shorthand for `left` and `right`. Overridden by an explicit side. */
|
|
7066
|
+
x?: SeparatorSpacingValue;
|
|
7067
|
+
/** Shorthand for `top` and `bottom`. Overridden by an explicit side. */
|
|
7068
|
+
y?: SeparatorSpacingValue;
|
|
6795
7069
|
top?: SeparatorSpacingValue;
|
|
6796
7070
|
bottom?: SeparatorSpacingValue;
|
|
6797
7071
|
left?: SeparatorSpacingValue;
|
|
@@ -6824,9 +7098,11 @@ declare class SeparatorComponent {
|
|
|
6824
7098
|
*/
|
|
6825
7099
|
thickness: _angular_core.InputSignal<SeparatorThickness>;
|
|
6826
7100
|
/**
|
|
6827
|
-
* Spacing applied
|
|
6828
|
-
* -
|
|
6829
|
-
* -
|
|
7101
|
+
* Spacing applied as margins around the separator.
|
|
7102
|
+
* - Horizontal axis supports y-spacing only: a number sets top and bottom; the object form's `y` (or `top`/`bottom`) set each side. `x`/`left`/`right` are ignored.
|
|
7103
|
+
* - Vertical axis supports both x- and y-spacing: a number sets left and right; the object form accepts `x`/`y` shorthands or explicit `top`/`bottom`/`left`/`right`.
|
|
7104
|
+
*
|
|
7105
|
+
* In the object form, `x` is shorthand for `left`+`right` and `y` for `top`+`bottom`; an explicit side overrides the matching shorthand.
|
|
6830
7106
|
*/
|
|
6831
7107
|
spacing: _angular_core.InputSignal<SeparatorSpacingValue | SeparatorSpacing | undefined>;
|
|
6832
7108
|
/**
|
|
@@ -8268,124 +8544,6 @@ declare class StatusBadgeComponent {
|
|
|
8268
8544
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<StatusBadgeComponent, "tedi-status-badge", never, { "text": { "alias": "text"; "required": false; "isSignal": true; }; "class": { "alias": "class"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "role": { "alias": "role"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "status": { "alias": "status"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
8269
8545
|
}
|
|
8270
8546
|
|
|
8271
|
-
/**
|
|
8272
|
-
* A single item inside a `tedi-accordion`. Owns the item's state (expanded)
|
|
8273
|
-
* and the inputs shared by header and content (selected, showIconCard,
|
|
8274
|
-
* defaultExpanded).
|
|
8275
|
-
*
|
|
8276
|
-
* Header-related configuration lives on `tedi-accordion-item-header`; body
|
|
8277
|
-
* styling lives on `tedi-accordion-item-content`.
|
|
8278
|
-
*
|
|
8279
|
-
* Use together with the header and content children:
|
|
8280
|
-
*
|
|
8281
|
-
* ```html
|
|
8282
|
-
* <tedi-accordion-item>
|
|
8283
|
-
* <tedi-accordion-item-header>
|
|
8284
|
-
* <span tedi-accordion-title>Title</span>
|
|
8285
|
-
* </tedi-accordion-item-header>
|
|
8286
|
-
* <tedi-accordion-item-content>Content</tedi-accordion-item-content>
|
|
8287
|
-
* </tedi-accordion-item>
|
|
8288
|
-
* ```
|
|
8289
|
-
*
|
|
8290
|
-
* The optional `[tedi-accordion-icon-card]` slot is projected as a direct
|
|
8291
|
-
* child of the item (not inside the header), because it occupies its own
|
|
8292
|
-
* column in the item's grid layout.
|
|
8293
|
-
*/
|
|
8294
|
-
declare class AccordionItemComponent implements OnInit {
|
|
8295
|
-
readonly idGenerator: _IdGenerator;
|
|
8296
|
-
readonly contentId: string;
|
|
8297
|
-
readonly headerId: string;
|
|
8298
|
-
/**
|
|
8299
|
-
* Whether the accordion item is expanded initially.
|
|
8300
|
-
* Does not control the expanded state after initialization.
|
|
8301
|
-
*/
|
|
8302
|
-
defaultExpanded: _angular_core.InputSignal<boolean>;
|
|
8303
|
-
/**
|
|
8304
|
-
* Enables the icon-card layout variant. Affects both header and content
|
|
8305
|
-
* styling, so it lives on the item.
|
|
8306
|
-
*/
|
|
8307
|
-
showIconCard: _angular_core.InputSignal<boolean>;
|
|
8308
|
-
/**
|
|
8309
|
-
* Marks the accordion item as selected.
|
|
8310
|
-
*/
|
|
8311
|
-
selected: _angular_core.InputSignal<boolean>;
|
|
8312
|
-
expanded: _angular_core.ModelSignal<boolean>;
|
|
8313
|
-
private readonly accordion;
|
|
8314
|
-
ngOnInit(): void;
|
|
8315
|
-
toggle(): void;
|
|
8316
|
-
setExpanded(value: boolean): void;
|
|
8317
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AccordionItemComponent, never>;
|
|
8318
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AccordionItemComponent, "tedi-accordion-item", never, { "defaultExpanded": { "alias": "defaultExpanded"; "required": false; "isSignal": true; }; "showIconCard": { "alias": "showIconCard"; "required": false; "isSignal": true; }; "selected": { "alias": "selected"; "required": false; "isSignal": true; }; "expanded": { "alias": "expanded"; "required": false; "isSignal": true; }; }, { "expanded": "expandedChange"; }, never, ["[tedi-accordion-icon-card]", "tedi-accordion-item-header", "tedi-accordion-item-content"], true, never>;
|
|
8319
|
-
}
|
|
8320
|
-
|
|
8321
|
-
declare class AccordionComponent {
|
|
8322
|
-
/**
|
|
8323
|
-
* Whether the accordion allows multiple items to be expanded at the same time.
|
|
8324
|
-
* If false, opening one item will collapse the others automatically.
|
|
8325
|
-
*/
|
|
8326
|
-
allowMultiple: _angular_core.InputSignal<boolean>;
|
|
8327
|
-
items: _angular_core.Signal<readonly AccordionItemComponent[]>;
|
|
8328
|
-
onItemToggled(activeItem: AccordionItemComponent): void;
|
|
8329
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AccordionComponent, never>;
|
|
8330
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AccordionComponent, "tedi-accordion", never, { "allowMultiple": { "alias": "allowMultiple"; "required": false; "isSignal": true; }; }, {}, ["items"], ["*"], true, never>;
|
|
8331
|
-
}
|
|
8332
|
-
|
|
8333
|
-
declare class AccordionItemHeaderComponent {
|
|
8334
|
-
protected readonly item: AccordionItemComponent;
|
|
8335
|
-
/**
|
|
8336
|
-
* If false, disables header toggling and enables using interactive elements in the accordion header.
|
|
8337
|
-
*/
|
|
8338
|
-
headerClickable: _angular_core.InputSignal<boolean>;
|
|
8339
|
-
/**
|
|
8340
|
-
* Sets how the accordion title stretches horizontally.
|
|
8341
|
-
* `hug` - container sizes to its content.
|
|
8342
|
-
* `fill` - container expands to available space, moving any trailing elements to the end.
|
|
8343
|
-
*/
|
|
8344
|
-
titleLayout: _angular_core.InputSignal<"fill" | "hug">;
|
|
8345
|
-
/** Label shown when accordion is collapsed */
|
|
8346
|
-
openLabel: _angular_core.InputSignal<string>;
|
|
8347
|
-
/** Label shown when accordion is expanded */
|
|
8348
|
-
closeLabel: _angular_core.InputSignal<string>;
|
|
8349
|
-
/**
|
|
8350
|
-
* Controls whether the expand/collapse label is shown.
|
|
8351
|
-
*/
|
|
8352
|
-
showExpandLabel: _angular_core.InputSignal<boolean>;
|
|
8353
|
-
/**
|
|
8354
|
-
* Controls whether the default expand/collapse action is shown.
|
|
8355
|
-
*/
|
|
8356
|
-
showDefaultExpandAction: _angular_core.InputSignal<boolean>;
|
|
8357
|
-
/**
|
|
8358
|
-
* Position of the expand action relative to the header content.
|
|
8359
|
-
*/
|
|
8360
|
-
expandActionPosition: _angular_core.InputSignal<"start" | "end">;
|
|
8361
|
-
/**
|
|
8362
|
-
* Custom CSS classes for the accordion header.
|
|
8363
|
-
*/
|
|
8364
|
-
headerClass: _angular_core.InputSignal<string | null>;
|
|
8365
|
-
readonly headerId: string;
|
|
8366
|
-
readonly contentId: string;
|
|
8367
|
-
readonly expanded: _angular_core.ModelSignal<boolean>;
|
|
8368
|
-
readonly expandLabel: _angular_core.Signal<string>;
|
|
8369
|
-
readonly showStartExpandAction: _angular_core.Signal<boolean>;
|
|
8370
|
-
readonly showEndExpandAction: _angular_core.Signal<boolean>;
|
|
8371
|
-
toggle(): void;
|
|
8372
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AccordionItemHeaderComponent, never>;
|
|
8373
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AccordionItemHeaderComponent, "tedi-accordion-item-header", never, { "headerClickable": { "alias": "headerClickable"; "required": false; "isSignal": true; }; "titleLayout": { "alias": "titleLayout"; "required": false; "isSignal": true; }; "openLabel": { "alias": "openLabel"; "required": false; "isSignal": true; }; "closeLabel": { "alias": "closeLabel"; "required": false; "isSignal": true; }; "showExpandLabel": { "alias": "showExpandLabel"; "required": false; "isSignal": true; }; "showDefaultExpandAction": { "alias": "showDefaultExpandAction"; "required": false; "isSignal": true; }; "expandActionPosition": { "alias": "expandActionPosition"; "required": false; "isSignal": true; }; "headerClass": { "alias": "headerClass"; "required": false; "isSignal": true; }; }, {}, never, ["[tedi-accordion-start-action]", "[tedi-accordion-before-title]", "[tedi-accordion-title]", "[tedi-accordion-start-description]", "[tedi-accordion-after-title]", "[tedi-accordion-end-description]", "[tedi-accordion-end-action]"], true, never>;
|
|
8374
|
-
}
|
|
8375
|
-
|
|
8376
|
-
declare class AccordionItemContentComponent {
|
|
8377
|
-
protected readonly item: AccordionItemComponent;
|
|
8378
|
-
/**
|
|
8379
|
-
* Custom CSS classes for the accordion content.
|
|
8380
|
-
*/
|
|
8381
|
-
contentClass: _angular_core.InputSignal<string | null>;
|
|
8382
|
-
readonly headerId: string;
|
|
8383
|
-
readonly contentId: string;
|
|
8384
|
-
readonly expanded: _angular_core.ModelSignal<boolean>;
|
|
8385
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AccordionItemContentComponent, never>;
|
|
8386
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AccordionItemContentComponent, "tedi-accordion-item-content", never, { "contentClass": { "alias": "contentClass"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
8387
|
-
}
|
|
8388
|
-
|
|
8389
8547
|
declare class HideAtDirective {
|
|
8390
8548
|
hideAt: _angular_core.InputSignal<"xs" | "sm" | "md" | "lg" | "xl" | "xxl">;
|
|
8391
8549
|
private templateRef;
|
|
@@ -8506,5 +8664,5 @@ declare function isValidTime(time: string | null | undefined): boolean;
|
|
|
8506
8664
|
declare function normalizeTime(input: string): string | null;
|
|
8507
8665
|
|
|
8508
8666
|
export { AVAILABLE_LANGUAGES, AccordionComponent, AccordionItemComponent, AccordionItemContentComponent, AccordionItemHeaderComponent, AlertComponent, AttachmentActionsComponent, AttachmentComponent, BREAKPOINTS, BaseButtonDirective, 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, HideAtDirective, HorizontalPushHandler, HorizontalStepperComponent, HorizontalStepperItemComponent, IconComponent, InfoButtonComponent, LANGUAGE_COOKIE_NAME, LANGUAGE_FALLBACK_VALUE, LabelComponent, LinkComponent, ListComponent, MODAL_DATA, MODAL_SIZE, ModalComponent, ModalContentComponent, ModalFooterComponent, ModalHeaderComponent, ModalRef, ModalService, NumberFieldComponent, PaginationComponent, PopoverComponent, PopoverContentComponent, PopoverTriggerDirective, ProgressBarComponent, RadioCardComponent, RadioCardGroupComponent, RadioComponent, RadioGroupComponent, RowComponent, ScrollFadeComponent, SelectComponent, SelectOptionTemplateDirective, SelectValueTemplateDirective, SeparatorComponent, ShowAtDirective, SideNavComponent, SideNavDropdownComponent, SideNavDropdownGroupComponent, SideNavDropdownItemComponent, SideNavGroupTitleComponent, SideNavItemComponent, SideNavOverlayComponent, SideNavToggleComponent, SpecialOptionControls, SpinnerComponent, StatusBadgeComponent, StatusIndicatorComponent, TAG_GAP, TEDI_FORM_FIELD_CONTROL, 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, 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 };
|
|
8509
|
-
export type { AlertRole, AlertTitleType, AlertType, AlertVariant, AlignItems, AlignSelf, ArrowOffset, ArrowType, AttachmentDirection, 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, HeaderLoginInputs, HeaderLoginSize, HeaderLogoutInputs, HeaderLogoutSize, HeaderProfileInputs, HeaderProfileSize, HeaderSearchMobileLabels, HeaderSearchMobileVariant, HorizontalStepperBackground, IconBackgroundColor, IconColor, IconSize, IconType, IconVariant, 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, SelectInputSize, SelectOption, SelectOptionContext, SelectOptionGroup, SelectValueContext, SeparatorAxis, SeparatorColor, SeparatorDotSize, SeparatorSpacing, SeparatorSpacingValue, SeparatorThickness, SeparatorVariant, SideNavItemSize, 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 };
|
|
8667
|
+
export type { AccordionInputs, AlertRole, AlertSize, AlertTitleType, AlertType, AlertVariant, AlignItems, AlignSelf, ArrowOffset, ArrowType, AttachmentDirection, 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, HeaderLoginInputs, HeaderLoginSize, HeaderLogoutInputs, HeaderLogoutSize, HeaderProfileInputs, HeaderProfileSize, HeaderSearchMobileLabels, HeaderSearchMobileVariant, HorizontalStepperBackground, IconBackgroundColor, IconColor, IconSize, IconType, IconVariant, 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, SelectInputSize, SelectOption, SelectOptionContext, SelectOptionGroup, SelectValueContext, SeparatorAxis, SeparatorColor, SeparatorDotSize, SeparatorSpacing, SeparatorSpacingValue, SeparatorThickness, SeparatorVariant, SideNavItemSize, 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 };
|
|
8510
8668
|
//# sourceMappingURL=index.d.ts.map
|