@tedi-design-system/angular 6.5.0-rc.10 → 6.5.0-rc.12

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tedi-design-system/angular",
3
- "version": "6.5.0-rc.10",
3
+ "version": "6.5.0-rc.12",
4
4
  "type": "module",
5
5
  "main": "community.mjs",
6
6
  "module": "fesm2022/tedi-design-system-angular.mjs",
package/tedi/index.d.ts CHANGED
@@ -112,13 +112,35 @@ declare class ButtonComponent {
112
112
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<ButtonComponent, "[tedi-button]", never, { "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, [{ directive: typeof BaseButtonDirective; inputs: {}; outputs: {}; }]>;
113
113
  }
114
114
 
115
+ /**
116
+ * Interactive wrapper around a `tedi-card`. Apply to an anchor (with `href`
117
+ * or `routerLink`) for navigation or to a button for actions — the host
118
+ * element provides the interaction semantics and applies the hover, active,
119
+ * focus and disabled states to the card and its blocks inside.
120
+ *
121
+ * Only a projected `tedi-card` is rendered — other content is ignored. The
122
+ * card may use any card sub-components (content, rows, icon cells). Do not
123
+ * place other interactive elements inside.
124
+ */
125
+ declare class CardButtonComponent {
126
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<CardButtonComponent, never>;
127
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<CardButtonComponent, "a[tedi-card-button], button[tedi-card-button]", never, {}, {}, never, ["tedi-card"], true, never>;
128
+ }
129
+
130
+ /**
131
+ * Grid breakpoints in `rem`, mirroring `$grid-breakpoints` in
132
+ * `@tedi-design-system/core`. `rem` is used (instead of `px`) so breakpoints
133
+ * resolve against the browser's base font size and scale with the user's font
134
+ * preference — keeping these JS breakpoints aligned with the rem-based CSS
135
+ * tokens at any zoom / font-size setting.
136
+ */
115
137
  declare const BREAKPOINTS: {
116
138
  readonly xs: 0;
117
- readonly sm: 576;
118
- readonly md: 768;
119
- readonly lg: 992;
120
- readonly xl: 1200;
121
- readonly xxl: 1400;
139
+ readonly sm: 36;
140
+ readonly md: 48;
141
+ readonly lg: 62;
142
+ readonly xl: 75;
143
+ readonly xxl: 87.5;
122
144
  };
123
145
  type Breakpoint = keyof typeof BREAKPOINTS;
124
146
  type BreakpointInputs<TInputs> = {
@@ -374,6 +396,13 @@ declare const translationsMap: {
374
396
  en: string;
375
397
  ru: string;
376
398
  };
399
+ "file-attachment.uploading": {
400
+ description: string;
401
+ components: string[];
402
+ et: string;
403
+ en: string;
404
+ ru: string;
405
+ };
377
406
  "modal.close": {
378
407
  description: string;
379
408
  components: string[];
@@ -1775,14 +1804,228 @@ declare class ClosingButtonComponent {
1775
1804
  * @default 24
1776
1805
  */
1777
1806
  iconSize: _angular_core.InputSignal<ClosingButtonIconSize>;
1807
+ /**
1808
+ * Material Symbols icon rendered inside the button. Override for other
1809
+ * closing-like actions such as delete/remove (e.g. `delete`). When
1810
+ * overriding, also provide a matching `ariaLabel` — the default label
1811
+ * is "close".
1812
+ * @default close
1813
+ */
1814
+ icon: _angular_core.InputSignal<string>;
1778
1815
  /**
1779
1816
  * ARIA label to override default label "close"
1780
1817
  */
1781
1818
  readonly ariaLabel: _angular_core.InputSignal<string | undefined>;
1819
+ /**
1820
+ * Render the label as a native `title` attribute (browser tooltip on
1821
+ * hover). Set to `false` when the button is wrapped in a `tedi-tooltip`
1822
+ * so the native tooltip does not double the custom one. The `aria-label`
1823
+ * is kept either way.
1824
+ * @default true
1825
+ */
1826
+ showTitle: _angular_core.InputSignalWithTransform<boolean, unknown>;
1782
1827
  private translationService;
1783
1828
  private readonly _defaultLabel;
1784
1829
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ClosingButtonComponent, never>;
1785
- 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; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
1830
+ 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>;
1831
+ }
1832
+
1833
+ type CardBorderPlacement = "top" | "left";
1834
+ 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";
1835
+ type CardBorderType = `${CardBorderPlacement}-${CardBackground}` | CardBackground;
1836
+ type CardPaddingNumber = 0 | 0.25 | 0.5 | 0.75 | 1 | 1.25 | 1.5 | 2 | 2.5 | 3;
1837
+ type CardPadding = CardPaddingNumber | {
1838
+ vertical: CardPaddingNumber;
1839
+ horizontal: CardPaddingNumber;
1840
+ } | {
1841
+ top?: CardPaddingNumber;
1842
+ right?: CardPaddingNumber;
1843
+ bottom?: CardPaddingNumber;
1844
+ left?: CardPaddingNumber;
1845
+ };
1846
+ type CardBorderRadius = false | {
1847
+ top?: boolean;
1848
+ right?: boolean;
1849
+ bottom?: boolean;
1850
+ left?: boolean;
1851
+ topLeft?: boolean;
1852
+ topRight?: boolean;
1853
+ bottomRight?: boolean;
1854
+ bottomLeft?: boolean;
1855
+ };
1856
+ type CardResolvedCorners = {
1857
+ topLeft: boolean;
1858
+ topRight: boolean;
1859
+ bottomRight: boolean;
1860
+ bottomLeft: boolean;
1861
+ };
1862
+ declare function getCardBorderPlacementColor(border?: CardBorderType): [CardBorderPlacement | undefined, CardBackground | undefined];
1863
+ declare function getPaddingCssVariables(padding: CardPadding): Record<string, string>;
1864
+ declare function resolveCardBorderRadius(config?: CardBorderRadius): CardResolvedCorners;
1865
+
1866
+ type CardInputs = {
1867
+ background?: CardBackground;
1868
+ padding?: CardPadding;
1869
+ borderRadius?: CardBorderRadius;
1870
+ borderless?: boolean;
1871
+ border?: CardBorderType;
1872
+ };
1873
+ /**
1874
+ * Card is a container for grouping related content. Compose it from
1875
+ * `tedi-card-header`, `tedi-card-content` and `tedi-card-notification` blocks.
1876
+ * `background` and `padding` set here act as defaults for all child blocks.
1877
+ */
1878
+ declare class CardComponent implements BreakpointInputs<CardInputs> {
1879
+ /**
1880
+ * Default background color for child content blocks.
1881
+ */
1882
+ background: _angular_core.InputSignal<CardBackground | undefined>;
1883
+ /**
1884
+ * Default padding for child content blocks.
1885
+ * Value is either a predefined number in rems or an object of
1886
+ * vertical/horizontal or top/right/bottom/left number values in rems.
1887
+ */
1888
+ padding: _angular_core.InputSignal<CardPadding | undefined>;
1889
+ /**
1890
+ * Controls card border radius.
1891
+ * Accepts `false` to remove all radius or an object to control
1892
+ * sides or individual corners. Corner values take precedence over sides.
1893
+ */
1894
+ borderRadius: _angular_core.InputSignal<CardBorderRadius | undefined>;
1895
+ /**
1896
+ * Removes border from card.
1897
+ * @default false
1898
+ */
1899
+ borderless: _angular_core.InputSignal<boolean | undefined>;
1900
+ /**
1901
+ * Type of border. Plain background value colors the whole border,
1902
+ * `top-` or `left-` prefixed value draws a thick accent border on that side.
1903
+ */
1904
+ border: _angular_core.InputSignal<CardBorderType | undefined>;
1905
+ xs: _angular_core.InputSignal<CardInputs | undefined>;
1906
+ sm: _angular_core.InputSignal<CardInputs | undefined>;
1907
+ md: _angular_core.InputSignal<CardInputs | undefined>;
1908
+ lg: _angular_core.InputSignal<CardInputs | undefined>;
1909
+ xl: _angular_core.InputSignal<CardInputs | undefined>;
1910
+ xxl: _angular_core.InputSignal<CardInputs | undefined>;
1911
+ private breakpointService;
1912
+ breakpointInputs: _angular_core.Signal<CardInputs>;
1913
+ classes: _angular_core.Signal<string>;
1914
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<CardComponent, never>;
1915
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<CardComponent, "tedi-card", never, { "background": { "alias": "background"; "required": false; "isSignal": true; }; "padding": { "alias": "padding"; "required": false; "isSignal": true; }; "borderRadius": { "alias": "borderRadius"; "required": false; "isSignal": true; }; "borderless": { "alias": "borderless"; "required": false; "isSignal": true; }; "border": { "alias": "border"; "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; }; }, {}, never, ["*"], true, never>;
1916
+ }
1917
+
1918
+ type CardContentInputs = {
1919
+ background?: CardBackground;
1920
+ padding?: CardPadding;
1921
+ backgroundImage?: string;
1922
+ backgroundPosition?: string;
1923
+ backgroundSize?: string;
1924
+ backgroundRepeat?: string;
1925
+ autoWidth?: boolean;
1926
+ };
1927
+ /**
1928
+ * Content block of a card. Inherits unset `background` and `padding`
1929
+ * from the parent `tedi-card`.
1930
+ */
1931
+ declare class CardContentComponent implements BreakpointInputs<CardContentInputs> {
1932
+ /**
1933
+ * Background color.
1934
+ * @default primary
1935
+ */
1936
+ background: _angular_core.InputSignal<CardBackground | undefined>;
1937
+ /**
1938
+ * Content padding.
1939
+ * Value is either a predefined number in rems or an object of
1940
+ * vertical/horizontal or top/right/bottom/left number values in rems.
1941
+ * @default 1
1942
+ */
1943
+ padding: _angular_core.InputSignal<CardPadding | undefined>;
1944
+ /**
1945
+ * Background image url.
1946
+ */
1947
+ backgroundImage: _angular_core.InputSignal<string | undefined>;
1948
+ /**
1949
+ * Background position for the image.
1950
+ */
1951
+ backgroundPosition: _angular_core.InputSignal<string | undefined>;
1952
+ /**
1953
+ * Background size for the image.
1954
+ */
1955
+ backgroundSize: _angular_core.InputSignal<string | undefined>;
1956
+ /**
1957
+ * Background repeat for the image.
1958
+ */
1959
+ backgroundRepeat: _angular_core.InputSignal<string | undefined>;
1960
+ /**
1961
+ * Takes only as much width as its content needs instead of growing.
1962
+ * Useful for icon or date cells inside `tedi-card-row`.
1963
+ * @default false
1964
+ */
1965
+ autoWidth: _angular_core.InputSignal<boolean | undefined>;
1966
+ xs: _angular_core.InputSignal<CardContentInputs | undefined>;
1967
+ sm: _angular_core.InputSignal<CardContentInputs | undefined>;
1968
+ md: _angular_core.InputSignal<CardContentInputs | undefined>;
1969
+ lg: _angular_core.InputSignal<CardContentInputs | undefined>;
1970
+ xl: _angular_core.InputSignal<CardContentInputs | undefined>;
1971
+ xxl: _angular_core.InputSignal<CardContentInputs | undefined>;
1972
+ protected blockClass: string;
1973
+ protected defaultBackground: CardBackground;
1974
+ private breakpointService;
1975
+ private card;
1976
+ breakpointInputs: _angular_core.Signal<CardContentInputs>;
1977
+ classes: _angular_core.Signal<string>;
1978
+ styles: _angular_core.Signal<Record<string, string>>;
1979
+ protected inheritedBackground(): CardBackground | undefined;
1980
+ protected defaultPadding(): CardPadding;
1981
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<CardContentComponent, never>;
1982
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<CardContentComponent, "tedi-card-content", never, { "background": { "alias": "background"; "required": false; "isSignal": true; }; "padding": { "alias": "padding"; "required": false; "isSignal": true; }; "backgroundImage": { "alias": "backgroundImage"; "required": false; "isSignal": true; }; "backgroundPosition": { "alias": "backgroundPosition"; "required": false; "isSignal": true; }; "backgroundSize": { "alias": "backgroundSize"; "required": false; "isSignal": true; }; "backgroundRepeat": { "alias": "backgroundRepeat"; "required": false; "isSignal": true; }; "autoWidth": { "alias": "autoWidth"; "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; }; }, {}, never, ["*"], true, never>;
1983
+ }
1984
+
1985
+ type CardIconType = "default" | "brand";
1986
+ type CardIconSize = "default" | "small";
1987
+ /**
1988
+ * Icon cell for a card row. The projected icon is aligned to the top of the
1989
+ * cell and inherits the cell color. Pair the small size with a 16px icon.
1990
+ */
1991
+ declare class CardIconComponent extends CardContentComponent {
1992
+ /**
1993
+ * Visual type of the icon cell.
1994
+ * @default default
1995
+ */
1996
+ type: _angular_core.InputSignal<CardIconType>;
1997
+ /**
1998
+ * Size of the icon cell.
1999
+ * @default default
2000
+ */
2001
+ size: _angular_core.InputSignal<CardIconSize>;
2002
+ protected blockClass: string;
2003
+ protected inheritedBackground(): CardBackground | undefined;
2004
+ protected defaultPadding(): CardPadding;
2005
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<CardIconComponent, never>;
2006
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<CardIconComponent, "tedi-card-icon", never, { "type": { "alias": "type"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
2007
+ }
2008
+
2009
+ /**
2010
+ * Lays out card content cells horizontally inside a card.
2011
+ * Place a `tedi-separator` between cells (vertical, `size="auto"`) or
2012
+ * between rows (horizontal) to draw dividers.
2013
+ */
2014
+ declare class CardRowComponent {
2015
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<CardRowComponent, never>;
2016
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<CardRowComponent, "tedi-card-row", never, {}, {}, never, ["*"], true, never>;
2017
+ }
2018
+
2019
+ /**
2020
+ * Header block of a card. Same API as `tedi-card-content`, but defaults to
2021
+ * the brand-primary background and does not inherit background from the card.
2022
+ */
2023
+ declare class CardHeaderComponent extends CardContentComponent {
2024
+ protected blockClass: string;
2025
+ protected defaultBackground: CardBackground;
2026
+ protected inheritedBackground(): CardBackground | undefined;
2027
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<CardHeaderComponent, never>;
2028
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<CardHeaderComponent, "tedi-card-header", never, {}, {}, never, ["*"], true, never>;
1786
2029
  }
1787
2030
 
1788
2031
  type BulletColor = "primary" | "secondary" | "tertiary" | "brand" | "brand-dark" | "success" | "warning" | "warning-dark" | "danger" | "white";
@@ -5010,6 +5253,174 @@ declare class TimeFieldComponent implements ControlValueAccessor, FormFieldContr
5010
5253
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<TimeFieldComponent, "tedi-time-field", never, { "inputId": { "alias": "inputId"; "required": true; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "invalidInput": { "alias": "invalid"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "clearable": { "alias": "clearable"; "required": false; "isSignal": true; }; "pickerVariant": { "alias": "pickerVariant"; "required": false; "isSignal": true; }; "useNativePicker": { "alias": "useNativePicker"; "required": false; "isSignal": true; }; "pickerTrigger": { "alias": "pickerTrigger"; "required": false; "isSignal": true; }; "closeOnSelect": { "alias": "closeOnSelect"; "required": false; "isSignal": true; }; "timeSlots": { "alias": "timeSlots"; "required": false; "isSignal": true; }; "columns": { "alias": "columns"; "required": false; "isSignal": true; }; "showSlotIndicator": { "alias": "showSlotIndicator"; "required": false; "isSignal": true; }; "minuteStep": { "alias": "minuteStep"; "required": false; "isSignal": true; }; "modal": { "alias": "modal"; "required": false; "isSignal": true; }; "fullscreen": { "alias": "fullscreen"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; }, never, never, true, never>;
5011
5254
  }
5012
5255
 
5256
+ type ProgressBarSize = "default" | "small";
5257
+ type ProgressBarLabelPosition = "top" | "horizontal";
5258
+ type ProgressBarValuePosition = "horizontal" | "bottom";
5259
+ /**
5260
+ * The subset of inputs that can be overridden per breakpoint via the
5261
+ * `xs`–`xxl` inputs. Every field is optional — only the ones you set override
5262
+ * the base value at that breakpoint.
5263
+ */
5264
+ type ProgressBarInputs = {
5265
+ /** Overrides {@link ProgressBarComponent.size}. */
5266
+ size?: ProgressBarSize;
5267
+ /** Overrides {@link ProgressBarComponent.labelPosition}. */
5268
+ labelPosition?: ProgressBarLabelPosition;
5269
+ /** Overrides {@link ProgressBarComponent.showValue}. */
5270
+ showValue?: boolean;
5271
+ /** Overrides {@link ProgressBarComponent.valuePosition}. */
5272
+ valuePosition?: ProgressBarValuePosition;
5273
+ /** Overrides {@link ProgressBarComponent.valueLabel}. */
5274
+ valueLabel?: string;
5275
+ };
5276
+ declare class ProgressBarComponent {
5277
+ /**
5278
+ * Optional id for the underlying `<progress>` element. Useful when an
5279
+ * external `<label for=…>` should bind to it.
5280
+ */
5281
+ progressId: _angular_core.InputSignal<string | undefined>;
5282
+ /**
5283
+ * Progress value between 0 and 100. Values are clamped.
5284
+ * @default 0
5285
+ */
5286
+ value: _angular_core.InputSignalWithTransform<number, number>;
5287
+ /**
5288
+ * Size of the bar. `small` renders a 4px bar height instead of the
5289
+ * default 8px.
5290
+ * @default default
5291
+ */
5292
+ size: _angular_core.InputSignal<ProgressBarSize>;
5293
+ /**
5294
+ * Optional title rendered above (default) or to the left of the bar.
5295
+ */
5296
+ label: _angular_core.InputSignal<string | undefined>;
5297
+ /**
5298
+ * Where to place the label relative to the bar.
5299
+ * Has no effect when `label` is not set.
5300
+ * @default top
5301
+ */
5302
+ labelPosition: _angular_core.InputSignal<ProgressBarLabelPosition>;
5303
+ /**
5304
+ * Render a red `*` after the label to indicate a required field.
5305
+ * Has no effect when `label` is not set.
5306
+ * @default false
5307
+ */
5308
+ required: _angular_core.InputSignalWithTransform<boolean, unknown>;
5309
+ /**
5310
+ * Show or hide the percentage value.
5311
+ * @default true
5312
+ */
5313
+ showValue: _angular_core.InputSignalWithTransform<boolean, unknown>;
5314
+ /**
5315
+ * Where to place the percentage value.
5316
+ * - `horizontal` – next to the bar.
5317
+ * - `bottom` – on the hint row beneath the bar.
5318
+ * @default horizontal
5319
+ */
5320
+ valuePosition: _angular_core.InputSignal<ProgressBarValuePosition>;
5321
+ /**
5322
+ * Override the rendered value text. Defaults to `"{value}%"`.
5323
+ *
5324
+ * Use this when the progress represents something other than a percentage —
5325
+ * e.g. `value=20` with `valueLabel="1/5"` shows the bar at 20% but renders
5326
+ * the label as "1/5". `value` still drives the bar fill; the label is also
5327
+ * exposed to assistive technology via `aria-valuetext`.
5328
+ */
5329
+ valueLabel: _angular_core.InputSignal<string | undefined>;
5330
+ /**
5331
+ * Accessible label for the progress bar. Falls back to `label()` when omitted.
5332
+ */
5333
+ ariaLabel: _angular_core.InputSignal<string | undefined>;
5334
+ /** Overrides applied from the `xs` breakpoint (≥ 0px) and up. */
5335
+ xs: _angular_core.InputSignal<ProgressBarInputs | undefined>;
5336
+ /** Overrides applied from the `sm` breakpoint (≥ 576px) and up. */
5337
+ sm: _angular_core.InputSignal<ProgressBarInputs | undefined>;
5338
+ /** Overrides applied from the `md` breakpoint (≥ 768px) and up. */
5339
+ md: _angular_core.InputSignal<ProgressBarInputs | undefined>;
5340
+ /** Overrides applied from the `lg` breakpoint (≥ 992px) and up. */
5341
+ lg: _angular_core.InputSignal<ProgressBarInputs | undefined>;
5342
+ /** Overrides applied from the `xl` breakpoint (≥ 1200px) and up. */
5343
+ xl: _angular_core.InputSignal<ProgressBarInputs | undefined>;
5344
+ /** Overrides applied from the `xxl` breakpoint (≥ 1400px) and up. */
5345
+ xxl: _angular_core.InputSignal<ProgressBarInputs | undefined>;
5346
+ private breakpointService;
5347
+ protected currentProps: _angular_core.Signal<ProgressBarInputs>;
5348
+ protected formattedValue: _angular_core.Signal<string>;
5349
+ protected accessibleLabel: _angular_core.Signal<string | undefined>;
5350
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<ProgressBarComponent, never>;
5351
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<ProgressBarComponent, "tedi-progress-bar", never, { "progressId": { "alias": "progressId"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "labelPosition": { "alias": "labelPosition"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "showValue": { "alias": "showValue"; "required": false; "isSignal": true; }; "valuePosition": { "alias": "valuePosition"; "required": false; "isSignal": true; }; "valueLabel": { "alias": "valueLabel"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "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; }; }, {}, never, ["tedi-feedback-text"], true, never>;
5352
+ }
5353
+
5354
+ type AttachmentDirection = "horizontal" | "vertical";
5355
+ declare class AttachmentComponent {
5356
+ protected projectedProgress: _angular_core.Signal<ProgressBarComponent | undefined>;
5357
+ private breakpointService;
5358
+ /**
5359
+ * File name to display.
5360
+ */
5361
+ name: _angular_core.InputSignal<string>;
5362
+ /**
5363
+ * Pre-formatted file size string (e.g. `"0.9 MB"`). Consumer formats the
5364
+ * value; the component renders it as-is to the right of the name.
5365
+ */
5366
+ fileSize: _angular_core.InputSignal<string | undefined>;
5367
+ /**
5368
+ * Leading file-type icon shown before the file name. Pass a Material Symbol
5369
+ * name (e.g. `"description"`, `"picture_as_pdf"`, `"imagesmode"`).
5370
+ */
5371
+ icon: _angular_core.InputSignal<string | undefined>;
5372
+ /**
5373
+ * Error feedback message. When set, the attachment switches to its error
5374
+ * visual: red card background, error icon next to the name, and the
5375
+ * message rendered as feedback text below the card. Implies `invalid`.
5376
+ */
5377
+ error: _angular_core.InputSignal<string | undefined>;
5378
+ /**
5379
+ * Mark the attachment as invalid. Switches to the error visual (red card
5380
+ * background, error icon next to the name) but does **not** render any
5381
+ * feedback text below the card. Use when the validation message is
5382
+ * shown elsewhere (e.g. as an aggregate error on the parent control).
5383
+ * Implied automatically when `error` is set.
5384
+ * @default false
5385
+ */
5386
+ invalid: _angular_core.InputSignalWithTransform<boolean, unknown>;
5387
+ /**
5388
+ * Content layout direction.
5389
+ * - `horizontal` – name/size and progress sit on a single row beside the
5390
+ * actions (the default desktop layout).
5391
+ * - `vertical` – name, size and progress stack in a column with the actions
5392
+ * pinned top-right. Useful in narrow containers (mobile, sidebars).
5393
+ *
5394
+ * When `undefined`, the direction is auto-derived from the viewport: it
5395
+ * switches to `vertical` below the `verticalBelow` breakpoint.
5396
+ */
5397
+ direction: _angular_core.InputSignal<AttachmentDirection | undefined>;
5398
+ /**
5399
+ * Viewport breakpoint below which the layout auto-switches to `vertical`
5400
+ * when `direction` is not set explicitly.
5401
+ * @default "sm"
5402
+ */
5403
+ verticalBelow: _angular_core.InputSignal<"xs" | "sm" | "md" | "lg" | "xl" | "xxl">;
5404
+ private _autoVertical;
5405
+ protected isVertical: _angular_core.Signal<boolean>;
5406
+ protected hasErrorVisual: _angular_core.Signal<boolean>;
5407
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<AttachmentComponent, never>;
5408
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<AttachmentComponent, "tedi-attachment", never, { "name": { "alias": "name"; "required": true; "isSignal": true; }; "fileSize": { "alias": "fileSize"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "error": { "alias": "error"; "required": false; "isSignal": true; }; "invalid": { "alias": "invalid"; "required": false; "isSignal": true; }; "direction": { "alias": "direction"; "required": false; "isSignal": true; }; "verticalBelow": { "alias": "verticalBelow"; "required": false; "isSignal": true; }; }, {}, ["projectedProgress"], ["tedi-progress-bar", "tedi-attachment-actions"], true, never>;
5409
+ }
5410
+
5411
+ declare class AttachmentActionsComponent {
5412
+ /**
5413
+ * Adds a 12px gap between the actions and 8px inline padding to the group.
5414
+ * Enable for labeled (text) buttons, whose neutral variant has no horizontal
5415
+ * padding of its own and would otherwise touch the card edge. Leave off for
5416
+ * icon-only buttons, which sit flush.
5417
+ * @default false
5418
+ */
5419
+ padded: _angular_core.InputSignalWithTransform<boolean, unknown>;
5420
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<AttachmentActionsComponent, never>;
5421
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<AttachmentActionsComponent, "tedi-attachment-actions", never, { "padded": { "alias": "padded"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
5422
+ }
5423
+
5013
5424
  type EmptyStateType = "separate" | "attached" | "inside";
5014
5425
  type EmptyStateSize = "default" | "small";
5015
5426
  /**
@@ -5257,28 +5668,55 @@ declare class SeparatorComponent {
5257
5668
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<SeparatorComponent, "tedi-separator", never, { "axis": { "alias": "axis"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "dotSize": { "alias": "dotSize"; "required": false; "isSignal": true; }; "dotFilled": { "alias": "dotFilled"; "required": false; "isSignal": true; }; "thickness": { "alias": "thickness"; "required": false; "isSignal": true; }; "spacing": { "alias": "spacing"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
5258
5669
  }
5259
5670
 
5671
+ /**
5672
+ * Marks content that is pinned to the bottom of a timeline item's timings
5673
+ * column on desktop and rendered after the item content on mobile.
5674
+ *
5675
+ * Usage: `<p *tediTimelineTimingsBottom>Muudetud 08.02.2024</p>`
5676
+ */
5677
+ declare class TimelineTimingsBottomDirective {
5678
+ templateRef: TemplateRef<any>;
5679
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TimelineTimingsBottomDirective, never>;
5680
+ static ɵdir: _angular_core.ɵɵDirectiveDeclaration<TimelineTimingsBottomDirective, "[tediTimelineTimingsBottom]", never, {}, {}, never, never, true, never>;
5681
+ }
5682
+
5260
5683
  type TimelineItemState = "current" | "past" | "future";
5261
5684
  declare class TimelineItemComponent implements OnInit, OnDestroy {
5262
5685
  /** Item timings */
5263
5686
  timings: _angular_core.InputSignal<string[]>;
5264
5687
  timeline: TimelineComponent | null;
5688
+ protected isMobile: _angular_core.Signal<boolean>;
5689
+ protected timingsBottom: _angular_core.Signal<TimelineTimingsBottomDirective | undefined>;
5265
5690
  ngOnInit(): void;
5266
5691
  ngOnDestroy(): void;
5267
5692
  isLast: _angular_core.Signal<boolean>;
5268
5693
  state: _angular_core.Signal<TimelineItemState>;
5269
5694
  color: _angular_core.Signal<SeparatorColor>;
5270
5695
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<TimelineItemComponent, never>;
5271
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<TimelineItemComponent, "tedi-timeline-item", never, { "timings": { "alias": "timings"; "required": false; "isSignal": true; }; }, {}, never, ["tedi-timeline-title", "tedi-timeline-description", "*"], true, never>;
5696
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<TimelineItemComponent, "tedi-timeline-item", never, { "timings": { "alias": "timings"; "required": false; "isSignal": true; }; }, {}, ["timingsBottom"], ["tedi-timeline-title", "tedi-timeline-description", "*"], true, never>;
5272
5697
  }
5273
5698
 
5699
+ type TimelineVariant = "default" | "card";
5700
+ type TimelineCardPadding = CardPaddingNumber;
5274
5701
  declare class TimelineComponent {
5275
5702
  /** Index of active item */
5276
5703
  activeIndex: _angular_core.InputSignal<number | undefined>;
5704
+ /**
5705
+ * Visual variant. "card" wraps the timeline in the borders and paddings
5706
+ * of a card.
5707
+ * @default default
5708
+ */
5709
+ variant: _angular_core.InputSignal<TimelineVariant>;
5710
+ /**
5711
+ * Item padding in rems for the card variant.
5712
+ * @default 1
5713
+ */
5714
+ cardPadding: _angular_core.InputSignal<CardPaddingNumber | undefined>;
5277
5715
  items: _angular_core.WritableSignal<TimelineItemComponent[]>;
5278
5716
  registerItem(item: TimelineItemComponent): void;
5279
5717
  unregisterItem(item: TimelineItemComponent): void;
5280
5718
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<TimelineComponent, never>;
5281
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<TimelineComponent, "tedi-timeline", never, { "activeIndex": { "alias": "activeIndex"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
5719
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<TimelineComponent, "tedi-timeline", never, { "activeIndex": { "alias": "activeIndex"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "cardPadding": { "alias": "cardPadding"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
5282
5720
  }
5283
5721
 
5284
5722
  declare class TimelineDescriptionComponent {
@@ -5921,6 +6359,16 @@ declare class TooltipTriggerComponent implements AfterContentChecked {
5921
6359
  onFocusOut(): void;
5922
6360
  onEscape(): void;
5923
6361
  ngAfterContentChecked(): void;
6362
+ /**
6363
+ * The element that actually receives focus and ARIA semantics. When the
6364
+ * projected child is itself focusable (a `<button>`/`<a href>`) it is used
6365
+ * directly. When it is a non-focusable wrapper that renders its own
6366
+ * interactive element (e.g. a `tedi-dropdown` projecting a trigger button),
6367
+ * the first focusable descendant is used instead — otherwise focus and the
6368
+ * tooltip description would land on the non-interactive wrapper.
6369
+ */
6370
+ private resolveInteractiveElement;
6371
+ private isFocusable;
5924
6372
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<TooltipTriggerComponent, never>;
5925
6373
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<TooltipTriggerComponent, "tedi-tooltip-trigger", never, {}, {}, never, ["*"], true, [{ directive: typeof _angular_cdk_overlay.CdkOverlayOrigin; inputs: {}; outputs: {}; }]>;
5926
6374
  }
@@ -6271,6 +6719,14 @@ declare class HideAtDirective {
6271
6719
  private templateRef;
6272
6720
  private viewContainerRef;
6273
6721
  private breakpointService;
6722
+ private visible;
6723
+ /**
6724
+ * Attribute usage (`hideAt` on a real element) toggles `display` so the
6725
+ * element stays in the DOM and remains eligible for content projection.
6726
+ * Structural usage (`*hideAt`) creates/clears the view instead and leaves
6727
+ * `display` untouched (returns `null`).
6728
+ */
6729
+ protected hostDisplay: _angular_core.Signal<"none" | null>;
6274
6730
  constructor();
6275
6731
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<HideAtDirective, never>;
6276
6732
  static ɵdir: _angular_core.ɵɵDirectiveDeclaration<HideAtDirective, "[hideAt]", never, { "hideAt": { "alias": "hideAt"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
@@ -6281,6 +6737,14 @@ declare class ShowAtDirective {
6281
6737
  private templateRef;
6282
6738
  private viewContainerRef;
6283
6739
  private breakpointService;
6740
+ private visible;
6741
+ /**
6742
+ * Attribute usage (`showAt` on a real element) toggles `display` so the
6743
+ * element stays in the DOM and remains eligible for content projection.
6744
+ * Structural usage (`*showAt`) creates/clears the view instead and leaves
6745
+ * `display` untouched (returns `null`).
6746
+ */
6747
+ protected hostDisplay: _angular_core.Signal<"none" | null>;
6284
6748
  constructor();
6285
6749
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ShowAtDirective, never>;
6286
6750
  static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ShowAtDirective, "[showAt]", never, { "showAt": { "alias": "showAt"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
@@ -6323,6 +6787,6 @@ declare const TEDI_THEME_DEFAULT_TOKEN: InjectionToken<string>;
6323
6787
 
6324
6788
  declare const TEDI_TRANSLATION_DEFAULT_TOKEN: InjectionToken<Language>;
6325
6789
 
6326
- export { AVAILABLE_LANGUAGES, AccordionComponent, AccordionItemComponent, AccordionItemContentComponent, AccordionItemHeaderComponent, AlertComponent, BREAKPOINTS, BaseButtonDirective, BreakpointService, ButtonComponent, CarouselComponent, CarouselContentComponent, CarouselFooterComponent, CarouselHeaderComponent, CarouselIndicatorsComponent, CarouselNavigationComponent, CarouselSlideDirective, CheckboxCardComponent, CheckboxCardGroupComponent, CheckboxComponent, CheckboxGroupComponent, ClosingButtonComponent, ColComponent, CollapseButtonComponent, CollapseComponent, DROPDOWN_API, DROPDOWN_CONTENT_API, DatePickerComponent, DropdownComponent, DropdownContentComponent, DropdownItemComponent, DropdownItemValueComponent, DropdownItemValueLabelComponent, DropdownItemValueMetaComponent, DropdownTriggerDirective, EllipsisComponent, EmptyStateComponent, FeedbackTextComponent, FilterComponent, FilterContentDirective, FilterGroupComponent, FilterPrependDirective, FooterBodyComponent, FooterBottomComponent, FooterComponent, FooterSectionComponent, FooterSideComponent, FormFieldComponent, HeaderActionsComponent, HeaderComponent, HeaderContentComponent, HeaderLanguageComponent, HeaderLoginComponent, HeaderLogoutComponent, HeaderProfileComponent, HeaderRoleComponent, 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, RadioCardComponent, RadioCardGroupComponent, RadioComponent, RadioGroupComponent, RowComponent, ScrollFadeComponent, SelectComponent, SelectOptionTemplateDirective, SelectValueTemplateDirective, SeparatorComponent, ShowAtDirective, SideNavComponent, SideNavDropdownComponent, SideNavDropdownGroupComponent, SideNavDropdownItemComponent, SideNavGroupTitleComponent, SideNavItemComponent, SideNavOverlayComponent, SideNavToggleComponent, SpecialOptionControls, SpinnerComponent, StatusBadgeComponent, StatusIndicatorComponent, 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, TagComponent, TediPaginationResultsDirective, TediTableColumnsMenuComponent, TediTableComponent, TediTableHeaderButtonComponent, TediTableToolbarComponent, TediTranslationPipe, TediTranslationService, TextComponent, TextFieldComponent, TextGroupComponent, TextGroupLabelComponent, TextGroupValueComponent, ThemeService, TimeFieldComponent, TimePickerComponent, TimelineComponent, TimelineDescriptionComponent, TimelineItemComponent, TimelineTitleComponent, ToastComponent, ToastService, ToggleComponent, TooltipComponent, TooltipContentComponent, TooltipTriggerComponent, VerticalSpacingDirective, VerticalSpacingItemDirective, breakpointInput, calculateArrowOffset, createTablePersistence, generateUUID, getPlacementFromPositionChange, groupRowSpan, injectTediTableContext, provideTedi, toConnectedPositions, usePagination };
6327
- export type { AlertRole, AlertTitleType, AlertType, AlertVariant, AlignItems, AlignSelf, ArrowOffset, ArrowType, Breakpoint, BreakpointFlag, BreakpointInput, BreakpointInputs, BreakpointInputsWithoutSignals, BreakpointObject, BulletColor, ButtonSize, ButtonVariant, CarouselIndicatorsVariant, CheckboxCardVariant, CheckboxGroupDirection, CheckboxSize, ClosingButtonIconSize, ClosingButtonSize, ColInputs, ColWidth, CollapseButtonArrowType, CollapseButtonSize, CollapseSize, Cols, ColumnReorderPhase, CompareWithFn, ComponentInputs, DatePickerDay, DatePickerInputSize, DatePickerInputState, DatePickerMatcher, DatePickerSelectorMode, DatePickerView, DropdownApi, DropdownContentApi, DropdownItemValueLayout, DropdownItemValueType, DropdownPosition, DropdownRole, DropdownTriggerAriaHasPopup, EllipsisPosition, EmptyStateSize, EmptyStateType, FeedbackTextPosition, FeedbackTextType, FilterOption, FilterSize, FilterVariant, FooterSidePlacement, FooterSidePosition, FormFieldControl, FormFieldIcon, Gap, GroupByFn, HeaderLanguage, HorizontalStepperBackground, IconBackgroundColor, IconColor, IconSize, IconType, IconVariant, InputSize, InputState, JustifyItems, JustifySelf, LabelColor, LabelSize, Language, LinkInputs, LinkSize, LinkVariant, ModalConfig, ModalFullscreen, ModalPosition, ModalScrollBehavior, ModalSize, ModalWidth, ModalWidthPreset, NumberFieldSize, OverlayPosition, OverlaySide, PaginationBackground, PaginationDividerPosition, PaginationItem, PaginationItemType, PaginationLabels, PaginationVisibility, PopoverPosition, PopoverWidth, RadioCardVariant, RadioGroupDirection, RadioSize, Representative, 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, TableExpandTrigger, TableFilterOptions, TablePaginationOptions, TablePersistOptions, TablePersistenceController, TableSelectionMode, TableSize, TableState, TableStatePatch, TagEllipsis, TagType, TediColumnDef, TediConfig, TediTableContextValue, TediTableFilterContext, TextColor, TextGroupInputs, TextGroupType, TextModifiers, Theme, TimeFieldFullscreen, TimeFieldModal, TimeFieldPickerTrigger, TimeFieldPickerVariant, TimeFieldUseNativePicker, TimePickerVariant, ToastConfig, ToastPosition, ToastRole, ToastType, ToggleSize, ToggleType, ToggleVariant, TooltipOpenWith, TooltipPosition, TooltipWidth, UsePaginationArgs, VerticalSpacingSize };
6790
+ export { AVAILABLE_LANGUAGES, AccordionComponent, AccordionItemComponent, AccordionItemContentComponent, AccordionItemHeaderComponent, AlertComponent, AttachmentActionsComponent, AttachmentComponent, BREAKPOINTS, BaseButtonDirective, BreakpointService, ButtonComponent, 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, DatePickerComponent, DropdownComponent, DropdownContentComponent, DropdownItemComponent, DropdownItemValueComponent, DropdownItemValueLabelComponent, DropdownItemValueMetaComponent, DropdownTriggerDirective, EllipsisComponent, EmptyStateComponent, FeedbackTextComponent, FilterComponent, FilterContentDirective, FilterGroupComponent, FilterPrependDirective, FooterBodyComponent, FooterBottomComponent, FooterComponent, FooterSectionComponent, FooterSideComponent, FormFieldComponent, HeaderActionsComponent, HeaderComponent, HeaderContentComponent, HeaderLanguageComponent, HeaderLoginComponent, HeaderLogoutComponent, HeaderProfileComponent, HeaderRoleComponent, 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, 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, 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, breakpointInput, calculateArrowOffset, createTablePersistence, generateUUID, getCardBorderPlacementColor, getPaddingCssVariables, getPlacementFromPositionChange, groupRowSpan, injectTediTableContext, provideTedi, resolveCardBorderRadius, toConnectedPositions, usePagination };
6791
+ export type { AlertRole, AlertTitleType, AlertType, AlertVariant, AlignItems, AlignSelf, ArrowOffset, ArrowType, AttachmentDirection, Breakpoint, BreakpointFlag, BreakpointInput, BreakpointInputs, BreakpointInputsWithoutSignals, BreakpointObject, BulletColor, ButtonSize, ButtonVariant, 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, DatePickerDay, DatePickerInputSize, DatePickerInputState, DatePickerMatcher, DatePickerSelectorMode, DatePickerView, DropdownApi, DropdownContentApi, DropdownItemValueLayout, DropdownItemValueType, DropdownPosition, DropdownRole, DropdownTriggerAriaHasPopup, EllipsisPosition, EmptyStateSize, EmptyStateType, FeedbackTextPosition, FeedbackTextType, FilterOption, FilterSize, FilterVariant, FooterSidePlacement, FooterSidePosition, FormFieldControl, FormFieldIcon, Gap, GroupByFn, HeaderLanguage, HorizontalStepperBackground, IconBackgroundColor, IconColor, IconSize, IconType, IconVariant, InputSize, InputState, JustifyItems, JustifySelf, LabelColor, LabelSize, Language, LinkInputs, LinkSize, LinkVariant, 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, 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, TableExpandTrigger, TableFilterOptions, TablePaginationOptions, TablePersistOptions, TablePersistenceController, TableSelectionMode, TableSize, TableState, TableStatePatch, TagEllipsis, 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 };
6328
6792
  //# sourceMappingURL=index.d.ts.map