@tedi-design-system/angular 6.5.0-rc.10 → 6.5.0-rc.11
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/community/index.d.ts +10 -2
- package/community/index.d.ts.map +1 -1
- package/fesm2022/tedi-design-system-angular-community.mjs +22 -28
- package/fesm2022/tedi-design-system-angular-community.mjs.map +1 -1
- package/fesm2022/tedi-design-system-angular-tedi.mjs +334 -38
- package/fesm2022/tedi-design-system-angular-tedi.mjs.map +1 -1
- package/package.json +1 -1
- package/tedi/index.d.ts +232 -8
- package/tedi/index.d.ts.map +1 -1
package/package.json
CHANGED
package/tedi/index.d.ts
CHANGED
|
@@ -112,13 +112,20 @@ 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
|
+
* Grid breakpoints in `rem`, mirroring `$grid-breakpoints` in
|
|
117
|
+
* `@tedi-design-system/core`. `rem` is used (instead of `px`) so breakpoints
|
|
118
|
+
* resolve against the browser's base font size and scale with the user's font
|
|
119
|
+
* preference — keeping these JS breakpoints aligned with the rem-based CSS
|
|
120
|
+
* tokens at any zoom / font-size setting.
|
|
121
|
+
*/
|
|
115
122
|
declare const BREAKPOINTS: {
|
|
116
123
|
readonly xs: 0;
|
|
117
|
-
readonly sm:
|
|
118
|
-
readonly md:
|
|
119
|
-
readonly lg:
|
|
120
|
-
readonly xl:
|
|
121
|
-
readonly xxl:
|
|
124
|
+
readonly sm: 36;
|
|
125
|
+
readonly md: 48;
|
|
126
|
+
readonly lg: 62;
|
|
127
|
+
readonly xl: 75;
|
|
128
|
+
readonly xxl: 87.5;
|
|
122
129
|
};
|
|
123
130
|
type Breakpoint = keyof typeof BREAKPOINTS;
|
|
124
131
|
type BreakpointInputs<TInputs> = {
|
|
@@ -374,6 +381,13 @@ declare const translationsMap: {
|
|
|
374
381
|
en: string;
|
|
375
382
|
ru: string;
|
|
376
383
|
};
|
|
384
|
+
"file-attachment.uploading": {
|
|
385
|
+
description: string;
|
|
386
|
+
components: string[];
|
|
387
|
+
et: string;
|
|
388
|
+
en: string;
|
|
389
|
+
ru: string;
|
|
390
|
+
};
|
|
377
391
|
"modal.close": {
|
|
378
392
|
description: string;
|
|
379
393
|
components: string[];
|
|
@@ -1775,14 +1789,30 @@ declare class ClosingButtonComponent {
|
|
|
1775
1789
|
* @default 24
|
|
1776
1790
|
*/
|
|
1777
1791
|
iconSize: _angular_core.InputSignal<ClosingButtonIconSize>;
|
|
1792
|
+
/**
|
|
1793
|
+
* Material Symbols icon rendered inside the button. Override for other
|
|
1794
|
+
* closing-like actions such as delete/remove (e.g. `delete`). When
|
|
1795
|
+
* overriding, also provide a matching `ariaLabel` — the default label
|
|
1796
|
+
* is "close".
|
|
1797
|
+
* @default close
|
|
1798
|
+
*/
|
|
1799
|
+
icon: _angular_core.InputSignal<string>;
|
|
1778
1800
|
/**
|
|
1779
1801
|
* ARIA label to override default label "close"
|
|
1780
1802
|
*/
|
|
1781
1803
|
readonly ariaLabel: _angular_core.InputSignal<string | undefined>;
|
|
1804
|
+
/**
|
|
1805
|
+
* Render the label as a native `title` attribute (browser tooltip on
|
|
1806
|
+
* hover). Set to `false` when the button is wrapped in a `tedi-tooltip`
|
|
1807
|
+
* so the native tooltip does not double the custom one. The `aria-label`
|
|
1808
|
+
* is kept either way.
|
|
1809
|
+
* @default true
|
|
1810
|
+
*/
|
|
1811
|
+
showTitle: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1782
1812
|
private translationService;
|
|
1783
1813
|
private readonly _defaultLabel;
|
|
1784
1814
|
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>;
|
|
1815
|
+
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>;
|
|
1786
1816
|
}
|
|
1787
1817
|
|
|
1788
1818
|
type BulletColor = "primary" | "secondary" | "tertiary" | "brand" | "brand-dark" | "success" | "warning" | "warning-dark" | "danger" | "white";
|
|
@@ -5010,6 +5040,174 @@ declare class TimeFieldComponent implements ControlValueAccessor, FormFieldContr
|
|
|
5010
5040
|
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
5041
|
}
|
|
5012
5042
|
|
|
5043
|
+
type ProgressBarSize = "default" | "small";
|
|
5044
|
+
type ProgressBarLabelPosition = "top" | "horizontal";
|
|
5045
|
+
type ProgressBarValuePosition = "horizontal" | "bottom";
|
|
5046
|
+
/**
|
|
5047
|
+
* The subset of inputs that can be overridden per breakpoint via the
|
|
5048
|
+
* `xs`–`xxl` inputs. Every field is optional — only the ones you set override
|
|
5049
|
+
* the base value at that breakpoint.
|
|
5050
|
+
*/
|
|
5051
|
+
type ProgressBarInputs = {
|
|
5052
|
+
/** Overrides {@link ProgressBarComponent.size}. */
|
|
5053
|
+
size?: ProgressBarSize;
|
|
5054
|
+
/** Overrides {@link ProgressBarComponent.labelPosition}. */
|
|
5055
|
+
labelPosition?: ProgressBarLabelPosition;
|
|
5056
|
+
/** Overrides {@link ProgressBarComponent.showValue}. */
|
|
5057
|
+
showValue?: boolean;
|
|
5058
|
+
/** Overrides {@link ProgressBarComponent.valuePosition}. */
|
|
5059
|
+
valuePosition?: ProgressBarValuePosition;
|
|
5060
|
+
/** Overrides {@link ProgressBarComponent.valueLabel}. */
|
|
5061
|
+
valueLabel?: string;
|
|
5062
|
+
};
|
|
5063
|
+
declare class ProgressBarComponent {
|
|
5064
|
+
/**
|
|
5065
|
+
* Optional id for the underlying `<progress>` element. Useful when an
|
|
5066
|
+
* external `<label for=…>` should bind to it.
|
|
5067
|
+
*/
|
|
5068
|
+
progressId: _angular_core.InputSignal<string | undefined>;
|
|
5069
|
+
/**
|
|
5070
|
+
* Progress value between 0 and 100. Values are clamped.
|
|
5071
|
+
* @default 0
|
|
5072
|
+
*/
|
|
5073
|
+
value: _angular_core.InputSignalWithTransform<number, number>;
|
|
5074
|
+
/**
|
|
5075
|
+
* Size of the bar. `small` renders a 4px bar height instead of the
|
|
5076
|
+
* default 8px.
|
|
5077
|
+
* @default default
|
|
5078
|
+
*/
|
|
5079
|
+
size: _angular_core.InputSignal<ProgressBarSize>;
|
|
5080
|
+
/**
|
|
5081
|
+
* Optional title rendered above (default) or to the left of the bar.
|
|
5082
|
+
*/
|
|
5083
|
+
label: _angular_core.InputSignal<string | undefined>;
|
|
5084
|
+
/**
|
|
5085
|
+
* Where to place the label relative to the bar.
|
|
5086
|
+
* Has no effect when `label` is not set.
|
|
5087
|
+
* @default top
|
|
5088
|
+
*/
|
|
5089
|
+
labelPosition: _angular_core.InputSignal<ProgressBarLabelPosition>;
|
|
5090
|
+
/**
|
|
5091
|
+
* Render a red `*` after the label to indicate a required field.
|
|
5092
|
+
* Has no effect when `label` is not set.
|
|
5093
|
+
* @default false
|
|
5094
|
+
*/
|
|
5095
|
+
required: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
5096
|
+
/**
|
|
5097
|
+
* Show or hide the percentage value.
|
|
5098
|
+
* @default true
|
|
5099
|
+
*/
|
|
5100
|
+
showValue: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
5101
|
+
/**
|
|
5102
|
+
* Where to place the percentage value.
|
|
5103
|
+
* - `horizontal` – next to the bar.
|
|
5104
|
+
* - `bottom` – on the hint row beneath the bar.
|
|
5105
|
+
* @default horizontal
|
|
5106
|
+
*/
|
|
5107
|
+
valuePosition: _angular_core.InputSignal<ProgressBarValuePosition>;
|
|
5108
|
+
/**
|
|
5109
|
+
* Override the rendered value text. Defaults to `"{value}%"`.
|
|
5110
|
+
*
|
|
5111
|
+
* Use this when the progress represents something other than a percentage —
|
|
5112
|
+
* e.g. `value=20` with `valueLabel="1/5"` shows the bar at 20% but renders
|
|
5113
|
+
* the label as "1/5". `value` still drives the bar fill; the label is also
|
|
5114
|
+
* exposed to assistive technology via `aria-valuetext`.
|
|
5115
|
+
*/
|
|
5116
|
+
valueLabel: _angular_core.InputSignal<string | undefined>;
|
|
5117
|
+
/**
|
|
5118
|
+
* Accessible label for the progress bar. Falls back to `label()` when omitted.
|
|
5119
|
+
*/
|
|
5120
|
+
ariaLabel: _angular_core.InputSignal<string | undefined>;
|
|
5121
|
+
/** Overrides applied from the `xs` breakpoint (≥ 0px) and up. */
|
|
5122
|
+
xs: _angular_core.InputSignal<ProgressBarInputs | undefined>;
|
|
5123
|
+
/** Overrides applied from the `sm` breakpoint (≥ 576px) and up. */
|
|
5124
|
+
sm: _angular_core.InputSignal<ProgressBarInputs | undefined>;
|
|
5125
|
+
/** Overrides applied from the `md` breakpoint (≥ 768px) and up. */
|
|
5126
|
+
md: _angular_core.InputSignal<ProgressBarInputs | undefined>;
|
|
5127
|
+
/** Overrides applied from the `lg` breakpoint (≥ 992px) and up. */
|
|
5128
|
+
lg: _angular_core.InputSignal<ProgressBarInputs | undefined>;
|
|
5129
|
+
/** Overrides applied from the `xl` breakpoint (≥ 1200px) and up. */
|
|
5130
|
+
xl: _angular_core.InputSignal<ProgressBarInputs | undefined>;
|
|
5131
|
+
/** Overrides applied from the `xxl` breakpoint (≥ 1400px) and up. */
|
|
5132
|
+
xxl: _angular_core.InputSignal<ProgressBarInputs | undefined>;
|
|
5133
|
+
private breakpointService;
|
|
5134
|
+
protected currentProps: _angular_core.Signal<ProgressBarInputs>;
|
|
5135
|
+
protected formattedValue: _angular_core.Signal<string>;
|
|
5136
|
+
protected accessibleLabel: _angular_core.Signal<string | undefined>;
|
|
5137
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ProgressBarComponent, never>;
|
|
5138
|
+
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>;
|
|
5139
|
+
}
|
|
5140
|
+
|
|
5141
|
+
type AttachmentDirection = "horizontal" | "vertical";
|
|
5142
|
+
declare class AttachmentComponent {
|
|
5143
|
+
protected projectedProgress: _angular_core.Signal<ProgressBarComponent | undefined>;
|
|
5144
|
+
private breakpointService;
|
|
5145
|
+
/**
|
|
5146
|
+
* File name to display.
|
|
5147
|
+
*/
|
|
5148
|
+
name: _angular_core.InputSignal<string>;
|
|
5149
|
+
/**
|
|
5150
|
+
* Pre-formatted file size string (e.g. `"0.9 MB"`). Consumer formats the
|
|
5151
|
+
* value; the component renders it as-is to the right of the name.
|
|
5152
|
+
*/
|
|
5153
|
+
fileSize: _angular_core.InputSignal<string | undefined>;
|
|
5154
|
+
/**
|
|
5155
|
+
* Leading file-type icon shown before the file name. Pass a Material Symbol
|
|
5156
|
+
* name (e.g. `"description"`, `"picture_as_pdf"`, `"imagesmode"`).
|
|
5157
|
+
*/
|
|
5158
|
+
icon: _angular_core.InputSignal<string | undefined>;
|
|
5159
|
+
/**
|
|
5160
|
+
* Error feedback message. When set, the attachment switches to its error
|
|
5161
|
+
* visual: red card background, error icon next to the name, and the
|
|
5162
|
+
* message rendered as feedback text below the card. Implies `invalid`.
|
|
5163
|
+
*/
|
|
5164
|
+
error: _angular_core.InputSignal<string | undefined>;
|
|
5165
|
+
/**
|
|
5166
|
+
* Mark the attachment as invalid. Switches to the error visual (red card
|
|
5167
|
+
* background, error icon next to the name) but does **not** render any
|
|
5168
|
+
* feedback text below the card. Use when the validation message is
|
|
5169
|
+
* shown elsewhere (e.g. as an aggregate error on the parent control).
|
|
5170
|
+
* Implied automatically when `error` is set.
|
|
5171
|
+
* @default false
|
|
5172
|
+
*/
|
|
5173
|
+
invalid: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
5174
|
+
/**
|
|
5175
|
+
* Content layout direction.
|
|
5176
|
+
* - `horizontal` – name/size and progress sit on a single row beside the
|
|
5177
|
+
* actions (the default desktop layout).
|
|
5178
|
+
* - `vertical` – name, size and progress stack in a column with the actions
|
|
5179
|
+
* pinned top-right. Useful in narrow containers (mobile, sidebars).
|
|
5180
|
+
*
|
|
5181
|
+
* When `undefined`, the direction is auto-derived from the viewport: it
|
|
5182
|
+
* switches to `vertical` below the `verticalBelow` breakpoint.
|
|
5183
|
+
*/
|
|
5184
|
+
direction: _angular_core.InputSignal<AttachmentDirection | undefined>;
|
|
5185
|
+
/**
|
|
5186
|
+
* Viewport breakpoint below which the layout auto-switches to `vertical`
|
|
5187
|
+
* when `direction` is not set explicitly.
|
|
5188
|
+
* @default "sm"
|
|
5189
|
+
*/
|
|
5190
|
+
verticalBelow: _angular_core.InputSignal<"xs" | "sm" | "md" | "lg" | "xl" | "xxl">;
|
|
5191
|
+
private _autoVertical;
|
|
5192
|
+
protected isVertical: _angular_core.Signal<boolean>;
|
|
5193
|
+
protected hasErrorVisual: _angular_core.Signal<boolean>;
|
|
5194
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AttachmentComponent, never>;
|
|
5195
|
+
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>;
|
|
5196
|
+
}
|
|
5197
|
+
|
|
5198
|
+
declare class AttachmentActionsComponent {
|
|
5199
|
+
/**
|
|
5200
|
+
* Adds a 12px gap between the actions and 8px inline padding to the group.
|
|
5201
|
+
* Enable for labeled (text) buttons, whose neutral variant has no horizontal
|
|
5202
|
+
* padding of its own and would otherwise touch the card edge. Leave off for
|
|
5203
|
+
* icon-only buttons, which sit flush.
|
|
5204
|
+
* @default false
|
|
5205
|
+
*/
|
|
5206
|
+
padded: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
5207
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AttachmentActionsComponent, never>;
|
|
5208
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AttachmentActionsComponent, "tedi-attachment-actions", never, { "padded": { "alias": "padded"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
5209
|
+
}
|
|
5210
|
+
|
|
5013
5211
|
type EmptyStateType = "separate" | "attached" | "inside";
|
|
5014
5212
|
type EmptyStateSize = "default" | "small";
|
|
5015
5213
|
/**
|
|
@@ -5921,6 +6119,16 @@ declare class TooltipTriggerComponent implements AfterContentChecked {
|
|
|
5921
6119
|
onFocusOut(): void;
|
|
5922
6120
|
onEscape(): void;
|
|
5923
6121
|
ngAfterContentChecked(): void;
|
|
6122
|
+
/**
|
|
6123
|
+
* The element that actually receives focus and ARIA semantics. When the
|
|
6124
|
+
* projected child is itself focusable (a `<button>`/`<a href>`) it is used
|
|
6125
|
+
* directly. When it is a non-focusable wrapper that renders its own
|
|
6126
|
+
* interactive element (e.g. a `tedi-dropdown` projecting a trigger button),
|
|
6127
|
+
* the first focusable descendant is used instead — otherwise focus and the
|
|
6128
|
+
* tooltip description would land on the non-interactive wrapper.
|
|
6129
|
+
*/
|
|
6130
|
+
private resolveInteractiveElement;
|
|
6131
|
+
private isFocusable;
|
|
5924
6132
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TooltipTriggerComponent, never>;
|
|
5925
6133
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TooltipTriggerComponent, "tedi-tooltip-trigger", never, {}, {}, never, ["*"], true, [{ directive: typeof _angular_cdk_overlay.CdkOverlayOrigin; inputs: {}; outputs: {}; }]>;
|
|
5926
6134
|
}
|
|
@@ -6271,6 +6479,14 @@ declare class HideAtDirective {
|
|
|
6271
6479
|
private templateRef;
|
|
6272
6480
|
private viewContainerRef;
|
|
6273
6481
|
private breakpointService;
|
|
6482
|
+
private visible;
|
|
6483
|
+
/**
|
|
6484
|
+
* Attribute usage (`hideAt` on a real element) toggles `display` so the
|
|
6485
|
+
* element stays in the DOM and remains eligible for content projection.
|
|
6486
|
+
* Structural usage (`*hideAt`) creates/clears the view instead and leaves
|
|
6487
|
+
* `display` untouched (returns `null`).
|
|
6488
|
+
*/
|
|
6489
|
+
protected hostDisplay: _angular_core.Signal<"none" | null>;
|
|
6274
6490
|
constructor();
|
|
6275
6491
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<HideAtDirective, never>;
|
|
6276
6492
|
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<HideAtDirective, "[hideAt]", never, { "hideAt": { "alias": "hideAt"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
@@ -6281,6 +6497,14 @@ declare class ShowAtDirective {
|
|
|
6281
6497
|
private templateRef;
|
|
6282
6498
|
private viewContainerRef;
|
|
6283
6499
|
private breakpointService;
|
|
6500
|
+
private visible;
|
|
6501
|
+
/**
|
|
6502
|
+
* Attribute usage (`showAt` on a real element) toggles `display` so the
|
|
6503
|
+
* element stays in the DOM and remains eligible for content projection.
|
|
6504
|
+
* Structural usage (`*showAt`) creates/clears the view instead and leaves
|
|
6505
|
+
* `display` untouched (returns `null`).
|
|
6506
|
+
*/
|
|
6507
|
+
protected hostDisplay: _angular_core.Signal<"none" | null>;
|
|
6284
6508
|
constructor();
|
|
6285
6509
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ShowAtDirective, never>;
|
|
6286
6510
|
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ShowAtDirective, "[showAt]", never, { "showAt": { "alias": "showAt"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
@@ -6323,6 +6547,6 @@ declare const TEDI_THEME_DEFAULT_TOKEN: InjectionToken<string>;
|
|
|
6323
6547
|
|
|
6324
6548
|
declare const TEDI_TRANSLATION_DEFAULT_TOKEN: InjectionToken<Language>;
|
|
6325
6549
|
|
|
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 };
|
|
6550
|
+
export { AVAILABLE_LANGUAGES, AccordionComponent, AccordionItemComponent, AccordionItemContentComponent, AccordionItemHeaderComponent, AlertComponent, AttachmentActionsComponent, AttachmentComponent, 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, 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, TimelineTitleComponent, ToastComponent, ToastService, ToggleComponent, TooltipComponent, TooltipContentComponent, TooltipTriggerComponent, VerticalSpacingDirective, VerticalSpacingItemDirective, breakpointInput, calculateArrowOffset, createTablePersistence, generateUUID, getPlacementFromPositionChange, groupRowSpan, injectTediTableContext, provideTedi, toConnectedPositions, usePagination };
|
|
6551
|
+
export type { AlertRole, AlertTitleType, AlertType, AlertVariant, AlignItems, AlignSelf, ArrowOffset, ArrowType, AttachmentDirection, 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, 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, ToastConfig, ToastPosition, ToastRole, ToastType, ToggleSize, ToggleType, ToggleVariant, TooltipOpenWith, TooltipPosition, TooltipWidth, UsePaginationArgs, VerticalSpacingSize };
|
|
6328
6552
|
//# sourceMappingURL=index.d.ts.map
|