@tedi-design-system/angular 8.1.0-rc.5 → 8.1.0-rc.7

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": "8.1.0-rc.5",
3
+ "version": "8.1.0-rc.7",
4
4
  "type": "module",
5
5
  "main": "community.mjs",
6
6
  "module": "fesm2022/tedi-design-system-angular.mjs",
@@ -19,6 +19,10 @@
19
19
  "types": "./community/index.d.ts",
20
20
  "default": "./fesm2022/tedi-design-system-angular-community.mjs"
21
21
  },
22
+ "./community/text-editor": {
23
+ "types": "./community/text-editor/index.d.ts",
24
+ "default": "./fesm2022/tedi-design-system-angular-community-text-editor.mjs"
25
+ },
22
26
  "./tedi": {
23
27
  "types": "./tedi/index.d.ts",
24
28
  "default": "./fesm2022/tedi-design-system-angular-tedi.mjs"
@@ -29,7 +33,17 @@
29
33
  "@angular/common": "^20.0.0 || ^21.0.0 || ^22.0.0",
30
34
  "@angular/core": "^20.0.0 || ^21.0.0 || ^22.0.0",
31
35
  "@angular/forms": "^20.0.0 || ^21.0.0 || ^22.0.0",
32
- "@angular/platform-browser": "^20.0.0 || ^21.0.0 || ^22.0.0"
36
+ "@angular/platform-browser": "^20.0.0 || ^21.0.0 || ^22.0.0",
37
+ "ngx-quill": "^28.0.2",
38
+ "quill": "^2.0.3"
39
+ },
40
+ "peerDependenciesMeta": {
41
+ "ngx-quill": {
42
+ "optional": true
43
+ },
44
+ "quill": {
45
+ "optional": true
46
+ }
33
47
  },
34
48
  "dependencies": {
35
49
  "@tanstack/angular-table": "^8.21.4",
package/tedi/index.d.ts CHANGED
@@ -1548,6 +1548,125 @@ declare const translationsMap: {
1548
1548
  en: string;
1549
1549
  ru: string;
1550
1550
  };
1551
+ "text-editor.bold": {
1552
+ description: string;
1553
+ components: string[];
1554
+ et: string;
1555
+ en: string;
1556
+ ru: string;
1557
+ };
1558
+ "text-editor.italic": {
1559
+ description: string;
1560
+ components: string[];
1561
+ et: string;
1562
+ en: string;
1563
+ ru: string;
1564
+ };
1565
+ "text-editor.underline": {
1566
+ description: string;
1567
+ components: string[];
1568
+ et: string;
1569
+ en: string;
1570
+ ru: string;
1571
+ };
1572
+ "text-editor.strike": {
1573
+ description: string;
1574
+ components: string[];
1575
+ et: string;
1576
+ en: string;
1577
+ ru: string;
1578
+ };
1579
+ "text-editor.align.left": {
1580
+ description: string;
1581
+ components: string[];
1582
+ et: string;
1583
+ en: string;
1584
+ ru: string;
1585
+ };
1586
+ "text-editor.align.center": {
1587
+ description: string;
1588
+ components: string[];
1589
+ et: string;
1590
+ en: string;
1591
+ ru: string;
1592
+ };
1593
+ "text-editor.align.right": {
1594
+ description: string;
1595
+ components: string[];
1596
+ et: string;
1597
+ en: string;
1598
+ ru: string;
1599
+ };
1600
+ "text-editor.align.justify": {
1601
+ description: string;
1602
+ components: string[];
1603
+ et: string;
1604
+ en: string;
1605
+ ru: string;
1606
+ };
1607
+ "text-editor.list.bullet": {
1608
+ description: string;
1609
+ components: string[];
1610
+ et: string;
1611
+ en: string;
1612
+ ru: string;
1613
+ };
1614
+ "text-editor.list.ordered": {
1615
+ description: string;
1616
+ components: string[];
1617
+ et: string;
1618
+ en: string;
1619
+ ru: string;
1620
+ };
1621
+ "text-editor.indent.increase": {
1622
+ description: string;
1623
+ components: string[];
1624
+ et: string;
1625
+ en: string;
1626
+ ru: string;
1627
+ };
1628
+ "text-editor.indent.decrease": {
1629
+ description: string;
1630
+ components: string[];
1631
+ et: string;
1632
+ en: string;
1633
+ ru: string;
1634
+ };
1635
+ "text-editor.color": {
1636
+ description: string;
1637
+ components: string[];
1638
+ et: string;
1639
+ en: string;
1640
+ ru: string;
1641
+ };
1642
+ "text-editor.background": {
1643
+ description: string;
1644
+ components: string[];
1645
+ et: string;
1646
+ en: string;
1647
+ ru: string;
1648
+ };
1649
+ "text-editor.link": {
1650
+ description: string;
1651
+ components: string[];
1652
+ et: string;
1653
+ en: string;
1654
+ ru: string;
1655
+ };
1656
+ "text-editor.blockquote": {
1657
+ description: string;
1658
+ components: string[];
1659
+ et: string;
1660
+ en: string;
1661
+ ru: string;
1662
+ };
1663
+ "text-editor.clean": {
1664
+ description: string;
1665
+ components: string[];
1666
+ et: string;
1667
+ en: string;
1668
+ ru: string;
1669
+ };
1551
1670
  "time-picker.hours": {
1552
1671
  description: string;
1553
1672
  components: string[];
@@ -3711,7 +3830,7 @@ declare class PaginationComponent {
3711
3830
  protected readonly statusText: _angular_core.Signal<string>;
3712
3831
  constructor();
3713
3832
  protected handlePageChange(nextPage: number | null): void;
3714
- protected handlePageSizeChange(value: number | null): void;
3833
+ protected handlePageSizeChange(value: unknown): void;
3715
3834
  protected openMobilePicker(): void;
3716
3835
  protected openPageSizePicker(): void;
3717
3836
  private openPickerModal;
@@ -5834,6 +5953,12 @@ interface FormFieldControl<T = unknown> {
5834
5953
  dirty?: Signal<boolean>;
5835
5954
  required?: Signal<boolean>;
5836
5955
  maxLength?: Signal<number | undefined>;
5956
+ /**
5957
+ * Number of characters `tedi-form-field`'s counter should report. Implemented
5958
+ * by controls whose value is not the text the user sees — a rich text editor
5959
+ * holding markup, say. Falls back to the length of `value`.
5960
+ */
5961
+ characterCount?: Signal<number>;
5837
5962
  /**
5838
5963
  * Clears the value. Implemented by controls that can be cleared, and called
5839
5964
  * by `tedi-form-field`'s clear button.
@@ -6904,6 +7029,12 @@ declare class SelectComponent<T = unknown> implements AfterContentChecked, After
6904
7029
  * When undefined, the entire object is used as the value.
6905
7030
  */
6906
7031
  bindValue: _angular_core.InputSignal<string | undefined>;
7032
+ /**
7033
+ * Selected value, for use without a form directive. An array in multi-select
7034
+ * mode, the bare value otherwise. Unlike `[ngModel]` it applies on the first
7035
+ * render rather than a frame later. Do not combine with a form directive.
7036
+ */
7037
+ value: _angular_core.InputSignal<unknown>;
6907
7038
  /**
6908
7039
  * Whether multiple items can be selected.
6909
7040
  * @default false
@@ -7067,6 +7198,7 @@ declare class SelectComponent<T = unknown> implements AfterContentChecked, After
7067
7198
  /** `aria-label` is only used when no labelledby reference is available. */
7068
7199
  resolvedAriaLabel: _angular_core.Signal<string | null>;
7069
7200
  isOpen: _angular_core.WritableSignal<boolean>;
7201
+ /** `allowMultiple` untracked, so flipping the mode cannot wipe the selection. */
7070
7202
  selectedValues: _angular_core.WritableSignal<unknown[]>;
7071
7203
  disabled: _angular_core.WritableSignal<boolean>;
7072
7204
  dropdownWidth: _angular_core.WritableSignal<number | null>;
@@ -7220,12 +7352,13 @@ declare class SelectComponent<T = unknown> implements AfterContentChecked, After
7220
7352
  private toggleGroupSelection;
7221
7353
  onChange: (value: unknown) => void;
7222
7354
  onTouched: () => void;
7355
+ private toSelection;
7223
7356
  writeValue(value: unknown): void;
7224
7357
  registerOnChange(fn: (value: unknown) => void): void;
7225
7358
  registerOnTouched(fn: () => void): void;
7226
7359
  setDisabledState(isDisabled: boolean): void;
7227
7360
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<SelectComponent<any>, never>;
7228
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<SelectComponent<any>, "tedi-select", never, { "inputId": { "alias": "inputId"; "required": true; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "tooltip": { "alias": "tooltip"; "required": false; "isSignal": true; }; "ariaLabelledby": { "alias": "ariaLabelledby"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "state": { "alias": "state"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "clearable": { "alias": "clearable"; "required": false; "isSignal": true; }; "dropdownWidthRef": { "alias": "dropdownWidthRef"; "required": false; "isSignal": true; }; "dropdownAlign": { "alias": "dropdownAlign"; "required": false; "isSignal": true; }; "feedbackText": { "alias": "feedbackText"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; "bindLabel": { "alias": "bindLabel"; "required": false; "isSignal": true; }; "bindValue": { "alias": "bindValue"; "required": false; "isSignal": true; }; "allowMultiple": { "alias": "allowMultiple"; "required": false; "isSignal": true; }; "groupBy": { "alias": "groupBy"; "required": false; "isSignal": true; }; "showSelectAll": { "alias": "showSelectAll"; "required": false; "isSignal": true; }; "selectableGroups": { "alias": "selectableGroups"; "required": false; "isSignal": true; }; "isTagRemovable": { "alias": "isTagRemovable"; "required": false; "isSignal": true; }; "multiRow": { "alias": "multiRow"; "required": false; "isSignal": true; }; "tagEllipsis": { "alias": "tagEllipsis"; "required": false; "isSignal": true; }; "ellipsis": { "alias": "ellipsis"; "required": false; "isSignal": true; }; "compareWith": { "alias": "compareWith"; "required": false; "isSignal": true; }; "disabledKey": { "alias": "disabledKey"; "required": false; "isSignal": true; }; "noOptionsMessage": { "alias": "noOptionsMessage"; "required": false; "isSignal": true; }; "maxDropdownHeight": { "alias": "maxDropdownHeight"; "required": false; "isSignal": true; }; "hideOnScroll": { "alias": "hideOnScroll"; "required": false; "isSignal": true; }; "dropdownType": { "alias": "dropdownType"; "required": false; "isSignal": true; }; "virtualScroll": { "alias": "virtualScroll"; "required": false; "isSignal": true; }; "virtualItemSize": { "alias": "virtualItemSize"; "required": false; "isSignal": true; }; "searchable": { "alias": "searchable"; "required": false; "isSignal": true; }; "searchFn": { "alias": "searchFn"; "required": false; "isSignal": true; }; "clearSearchOnSelect": { "alias": "clearSearchOnSelect"; "required": false; "isSignal": true; }; }, { "selectionChange": "selectionChange"; "searchChange": "searchChange"; "opened": "opened"; "closed": "closed"; "cleared": "cleared"; }, ["optionTemplate", "valueTemplate", "tooltipTemplate"], never, true, never>;
7361
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<SelectComponent<any>, "tedi-select", never, { "inputId": { "alias": "inputId"; "required": true; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "tooltip": { "alias": "tooltip"; "required": false; "isSignal": true; }; "ariaLabelledby": { "alias": "ariaLabelledby"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "state": { "alias": "state"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "clearable": { "alias": "clearable"; "required": false; "isSignal": true; }; "dropdownWidthRef": { "alias": "dropdownWidthRef"; "required": false; "isSignal": true; }; "dropdownAlign": { "alias": "dropdownAlign"; "required": false; "isSignal": true; }; "feedbackText": { "alias": "feedbackText"; "required": false; "isSignal": true; }; "options": { "alias": "options"; "required": false; "isSignal": true; }; "bindLabel": { "alias": "bindLabel"; "required": false; "isSignal": true; }; "bindValue": { "alias": "bindValue"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "allowMultiple": { "alias": "allowMultiple"; "required": false; "isSignal": true; }; "groupBy": { "alias": "groupBy"; "required": false; "isSignal": true; }; "showSelectAll": { "alias": "showSelectAll"; "required": false; "isSignal": true; }; "selectableGroups": { "alias": "selectableGroups"; "required": false; "isSignal": true; }; "isTagRemovable": { "alias": "isTagRemovable"; "required": false; "isSignal": true; }; "multiRow": { "alias": "multiRow"; "required": false; "isSignal": true; }; "tagEllipsis": { "alias": "tagEllipsis"; "required": false; "isSignal": true; }; "ellipsis": { "alias": "ellipsis"; "required": false; "isSignal": true; }; "compareWith": { "alias": "compareWith"; "required": false; "isSignal": true; }; "disabledKey": { "alias": "disabledKey"; "required": false; "isSignal": true; }; "noOptionsMessage": { "alias": "noOptionsMessage"; "required": false; "isSignal": true; }; "maxDropdownHeight": { "alias": "maxDropdownHeight"; "required": false; "isSignal": true; }; "hideOnScroll": { "alias": "hideOnScroll"; "required": false; "isSignal": true; }; "dropdownType": { "alias": "dropdownType"; "required": false; "isSignal": true; }; "virtualScroll": { "alias": "virtualScroll"; "required": false; "isSignal": true; }; "virtualItemSize": { "alias": "virtualItemSize"; "required": false; "isSignal": true; }; "searchable": { "alias": "searchable"; "required": false; "isSignal": true; }; "searchFn": { "alias": "searchFn"; "required": false; "isSignal": true; }; "clearSearchOnSelect": { "alias": "clearSearchOnSelect"; "required": false; "isSignal": true; }; }, { "selectionChange": "selectionChange"; "searchChange": "searchChange"; "opened": "opened"; "closed": "closed"; "cleared": "cleared"; }, ["optionTemplate", "valueTemplate", "tooltipTemplate"], never, true, never>;
7229
7362
  }
7230
7363
 
7231
7364
  type SliderHideLabel = boolean | "keep-space";
@@ -7429,6 +7562,27 @@ declare class FormFieldExtraDirective {
7429
7562
  static ɵdir: _angular_core.ɵɵDirectiveDeclaration<FormFieldExtraDirective, "[tediFormFieldExtra]", never, {}, {}, never, never, true, never>;
7430
7563
  }
7431
7564
 
7565
+ interface DerivedControlState {
7566
+ invalid: Signal<boolean>;
7567
+ touched: Signal<boolean>;
7568
+ dirty: Signal<boolean>;
7569
+ /** Whether the bound control carries `Validators.required`. */
7570
+ required: Signal<boolean>;
7571
+ /**
7572
+ * Call from `ngOnInit`: a control that is its own `NG_VALUE_ACCESSOR` cannot
7573
+ * inject `NgControl` in the constructor, because the accessor is what
7574
+ * `NgControl` depends on.
7575
+ */
7576
+ connect(): void;
7577
+ }
7578
+ declare function deriveControlState(): DerivedControlState;
7579
+
7580
+ interface ControlDescribedBy {
7581
+ attribute: Signal<string | null>;
7582
+ set(ids: string[]): void;
7583
+ }
7584
+ declare function controlDescribedBy(): ControlDescribedBy;
7585
+
7432
7586
  /**
7433
7587
  * Shared behavior for the prefix/suffix addon directives: reads the group's
7434
7588
  * disabled state and detects whether the addon holds plain text (so the
@@ -7509,11 +7663,6 @@ declare class InputGroupComponent implements InputGroupContext {
7509
7663
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<InputGroupComponent, "tedi-input-group", never, { "addons": { "alias": "addons"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "invalid": { "alias": "invalid"; "required": false; "isSignal": true; }; }, {}, ["prefix", "suffix"], ["label[tedi-label], tedi-label-row", "[tediInputGroupPrefix]", "tedi-form-field, tedi-select", "[tediInputGroupSuffix]", "tedi-feedback-text"], true, never>;
7510
7664
  }
7511
7665
 
7512
- interface ControlDescribedBy {
7513
- attribute: Signal<string | null>;
7514
- set(ids: string[]): void;
7515
- }
7516
-
7517
7666
  declare class TextFieldComponent implements OnInit, ControlValueAccessor, FormFieldControl {
7518
7667
  private el;
7519
7668
  private readonly fieldContext;
@@ -7547,7 +7696,7 @@ declare class TextFieldComponent implements OnInit, ControlValueAccessor, FormFi
7547
7696
  readonly disabledInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
7548
7697
  readonly disabled: _angular_core.Signal<boolean>;
7549
7698
  private readonly derived;
7550
- readonly describedBy: ControlDescribedBy;
7699
+ readonly describedBy: _tedi_design_system_angular_tedi.ControlDescribedBy;
7551
7700
  readonly touched: _angular_core.Signal<boolean>;
7552
7701
  readonly dirty: _angular_core.Signal<boolean>;
7553
7702
  readonly invalid: _angular_core.Signal<boolean>;
@@ -7655,7 +7804,7 @@ declare class TextareaComponent implements OnInit, ControlValueAccessor, FormFie
7655
7804
  readonly maxHeightStyle: _angular_core.Signal<string>;
7656
7805
  readonly disabled: _angular_core.Signal<boolean>;
7657
7806
  private readonly derived;
7658
- readonly describedBy: ControlDescribedBy;
7807
+ readonly describedBy: _tedi_design_system_angular_tedi.ControlDescribedBy;
7659
7808
  readonly touched: _angular_core.Signal<boolean>;
7660
7809
  readonly dirty: _angular_core.Signal<boolean>;
7661
7810
  readonly invalid: _angular_core.Signal<boolean>;
@@ -9311,6 +9460,94 @@ declare class SideNavToggleComponent {
9311
9460
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<SideNavToggleComponent, "button[tedi-sidenav-toggle]", never, {}, {}, never, never, true, never>;
9312
9461
  }
9313
9462
 
9463
+ declare class SkeletonComponent implements OnInit, OnDestroy {
9464
+ private readonly liveAnnouncer;
9465
+ private readonly translationService;
9466
+ private readonly isBrowser;
9467
+ /**
9468
+ * Announced by the skeleton's `role="status"` live region once the skeleton
9469
+ * has been on screen for `labelDelay`. Say what is loading: "Loading search
9470
+ * results" carries more than the generic fallback.
9471
+ * @default the translated `skeleton.loading` label
9472
+ */
9473
+ label: _angular_core.InputSignal<string | undefined>;
9474
+ /**
9475
+ * Announced when the skeleton is removed. The skeleton's own live region goes
9476
+ * with it, so this one goes through a page-level announcer. Only announced if
9477
+ * `label` was announced first, so content that arrives faster than
9478
+ * `labelDelay` stays silent.
9479
+ * @default the translated `skeleton.loading-completed` label
9480
+ */
9481
+ completedLabel: _angular_core.InputSignal<string | undefined>;
9482
+ /**
9483
+ * Delay in ms before `label` is announced, so brief loads do not interrupt
9484
+ * the screen reader.
9485
+ * @default 200
9486
+ */
9487
+ labelDelay: _angular_core.InputSignal<number>;
9488
+ /**
9489
+ * Text of the `role="status"` live region. Empty until `labelDelay` has
9490
+ * passed, so the region is in the DOM before it gains text: screen readers
9491
+ * only announce a live region they were already tracking.
9492
+ */
9493
+ protected readonly announcement: _angular_core.WritableSignal<string>;
9494
+ private announceTimer?;
9495
+ ngOnInit(): void;
9496
+ ngOnDestroy(): void;
9497
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<SkeletonComponent, never>;
9498
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<SkeletonComponent, "tedi-skeleton", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "completedLabel": { "alias": "completedLabel"; "required": false; "isSignal": true; }; "labelDelay": { "alias": "labelDelay"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
9499
+ }
9500
+
9501
+ type SkeletonBlockWidth = number | `${number}` | "auto" | `${number}px`;
9502
+ type SkeletonBlockTextHeight = "p" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6";
9503
+ type SkeletonBlockHeight = SkeletonBlockTextHeight | number | `${number}`;
9504
+ /**
9505
+ * The subset of inputs that can be overridden per breakpoint via the
9506
+ * `xs`–`xxl` inputs. Every field is optional; only the ones you set override
9507
+ * the base value at that breakpoint.
9508
+ */
9509
+ type SkeletonBlockInputs = {
9510
+ /** Overrides {@link SkeletonBlockComponent.width}. */
9511
+ width?: SkeletonBlockWidth;
9512
+ /** Overrides {@link SkeletonBlockComponent.height}. */
9513
+ height?: SkeletonBlockHeight;
9514
+ };
9515
+ declare class SkeletonBlockComponent {
9516
+ /**
9517
+ * Width of the block. A number is a percentage of the container, a `px`
9518
+ * string is an absolute width, and `auto` fills the container.
9519
+ * @default auto
9520
+ */
9521
+ width: _angular_core.InputSignal<SkeletonBlockWidth>;
9522
+ /**
9523
+ * Height of the block. A text style (`p`, `h1`–`h6`) takes the line height of
9524
+ * the text the block stands in for and follows it across breakpoints, so the
9525
+ * real content drops in without shifting the layout. Pass a number instead
9526
+ * for a height in px, for blocks that stand in for something other than text.
9527
+ * @default p
9528
+ */
9529
+ height: _angular_core.InputSignal<SkeletonBlockHeight>;
9530
+ /** Overrides applied from the `xs` breakpoint (≥ 0px) and up. */
9531
+ xs: _angular_core.InputSignal<SkeletonBlockInputs | undefined>;
9532
+ /** Overrides applied from the `sm` breakpoint (≥ 576px) and up. */
9533
+ sm: _angular_core.InputSignal<SkeletonBlockInputs | undefined>;
9534
+ /** Overrides applied from the `md` breakpoint (≥ 768px) and up. */
9535
+ md: _angular_core.InputSignal<SkeletonBlockInputs | undefined>;
9536
+ /** Overrides applied from the `lg` breakpoint (≥ 992px) and up. */
9537
+ lg: _angular_core.InputSignal<SkeletonBlockInputs | undefined>;
9538
+ /** Overrides applied from the `xl` breakpoint (≥ 1200px) and up. */
9539
+ xl: _angular_core.InputSignal<SkeletonBlockInputs | undefined>;
9540
+ /** Overrides applied from the `xxl` breakpoint (≥ 1400px) and up. */
9541
+ xxl: _angular_core.InputSignal<SkeletonBlockInputs | undefined>;
9542
+ private readonly breakpointService;
9543
+ protected currentProps: _angular_core.Signal<SkeletonBlockInputs>;
9544
+ protected classes: _angular_core.Signal<string>;
9545
+ protected resolvedWidth: _angular_core.Signal<string | null>;
9546
+ protected resolvedHeight: _angular_core.Signal<string | null>;
9547
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<SkeletonBlockComponent, never>;
9548
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<SkeletonBlockComponent, "tedi-skeleton-block", never, { "width": { "alias": "width"; "required": false; "isSignal": true; }; "height": { "alias": "height"; "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, never, true, never>;
9549
+ }
9550
+
9314
9551
  type SpinnerSize = 10 | 16 | 48;
9315
9552
  type SpinnerColor = "primary" | "secondary";
9316
9553
  declare class SpinnerComponent {
@@ -10174,6 +10411,6 @@ declare function isValidTime(time: string | null | undefined): boolean;
10174
10411
  */
10175
10412
  declare function normalizeTime(input: string): string | null;
10176
10413
 
10177
- export { AVAILABLE_LANGUAGES, AccordionComponent, AccordionItemComponent, AccordionItemContentComponent, AccordionItemHeaderComponent, AlertComponent, AttachmentActionsComponent, AttachmentComponent, BREAKPOINTS, BaseButtonDirective, BreadcrumbItemDirective, BreadcrumbSeparatorDirective, BreadcrumbsComponent, BreakpointService, ButtonComponent, ButtonGroupButtonDirective, ButtonGroupComponent, COUNTER_TAG_WIDTH, CalendarComponent, CardButtonComponent, CardComponent, CardContentComponent, CardHeaderComponent, CardIconComponent, CardRowComponent, CarouselComponent, CarouselContentComponent, CarouselFooterComponent, CarouselHeaderComponent, CarouselIndicatorsComponent, CarouselNavigationComponent, CarouselSlideDirective, CheckboxCardComponent, CheckboxCardGroupComponent, CheckboxComponent, CheckboxGroupComponent, ClosingButtonComponent, ColComponent, CollapseButtonComponent, CollapseComponent, DROPDOWN_API, DROPDOWN_CONTENT_API, DateFieldComponent, DatePickerComponent, DropdownComponent, DropdownContentComponent, DropdownItemComponent, DropdownItemValueComponent, DropdownItemValueLabelComponent, DropdownItemValueMetaComponent, DropdownTriggerDirective, EllipsisComponent, EmptyStateComponent, FeedbackTextComponent, FilterComponent, FilterContentDirective, FilterGroupComponent, FilterPrependDirective, FooterBodyComponent, FooterBottomComponent, FooterComponent, FooterSectionComponent, FooterSideComponent, FormFieldComponent, FormFieldExtraDirective, HeaderActionsComponent, HeaderBottomComponent, HeaderComponent, HeaderContentComponent, HeaderLanguageComponent, HeaderLoginComponent, HeaderLogoComponent, HeaderLogoDarkDirective, HeaderLogoutComponent, HeaderMobileButtonComponent, HeaderProfileComponent, HeaderRoleComponent, HeaderRoleContentDirective, HeaderRoleNoResultsDirective, HeaderRoleTitleDirective, HeaderSearchComponent, HeaderTopComponent, HideAtDirective, HorizontalPushHandler, HorizontalStepperComponent, HorizontalStepperItemComponent, IconComponent, InfoButtonComponent, InfoTooltipComponent, InputGroupComponent, InputGroupPrefixDirective, InputGroupSuffixDirective, LANGUAGE_COOKIE_NAME, LANGUAGE_FALLBACK_VALUE, LabelComponent, LabelRowComponent, LinkComponent, ListComponent, MODAL_DATA, MODAL_SIZE, ModalComponent, ModalContentComponent, ModalFooterComponent, ModalHeaderComponent, ModalRef, ModalService, NumberFieldComponent, PaginationComponent, PopoverComponent, PopoverContentComponent, PopoverTriggerDirective, ProgressBarComponent, RadioCardComponent, RadioCardGroupComponent, RadioComponent, RadioGroupComponent, RowComponent, ScrollFadeComponent, SearchComponent, SelectComponent, SelectOptionTemplateDirective, SelectTooltipTemplateDirective, SelectValueTemplateDirective, SeparatorComponent, ShowAtDirective, SideNavComponent, SideNavDropdownComponent, SideNavDropdownGroupComponent, SideNavDropdownItemComponent, SideNavGroupTitleComponent, SideNavItemComponent, SideNavOverlayComponent, SideNavToggleComponent, SliderComponent, SpecialOptionControls, SpinnerComponent, StatusBadgeComponent, StatusIndicatorComponent, TAG_GAP, TEDI_FIELD_CONTEXT, TEDI_FORM_FIELD_CONTROL, TEDI_INPUT_GROUP, TEDI_TABLE_CONTEXT, TEDI_THEME_DEFAULT_TOKEN, TEDI_TRANSLATION_DEFAULT_TOKEN, THEME_CLASS_PREFIX, THEME_COOKIE_NAME, THEME_FALLBACK_VALUE, TOAST_DEFAULT_DURATION, TabsComponent, TabsContentComponent, TabsListComponent, TabsTriggerComponent, TagComponent, TediPaginationResultsDirective, TediTableColumnsMenuComponent, TediTableComponent, TediTableHeaderButtonComponent, TediTableToolbarComponent, TediTranslationPipe, TediTranslationService, TextComponent, TextFieldComponent, TextGroupComponent, TextGroupLabelComponent, TextGroupValueComponent, TextareaComponent, ThemeService, TimeFieldComponent, TimePickerComponent, TimelineComponent, TimelineDescriptionComponent, TimelineItemComponent, TimelineTimingsBottomDirective, TimelineTitleComponent, ToastComponent, ToastService, ToggleComponent, TooltipComponent, TooltipContentComponent, TooltipTriggerComponent, TruncateComponent, 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 };
10178
- export type { AccordionInputs, AlertRole, AlertSize, AlertTitleType, AlertType, AlertVariant, AlignItems, AlignSelf, ArrowOffset, ArrowType, AttachmentDirection, BreadcrumbsInputs, BreadcrumbsVariant, Breakpoint, BreakpointFlag, BreakpointInput, BreakpointInputs, BreakpointInputsWithoutSignals, BreakpointObject, BulletColor, ButtonGroupDropdownLabelMode, ButtonSize, ButtonVariant, CalendarView, CardBackground, CardBorderPlacement, CardBorderRadius, CardBorderType, CardContentInputs, CardIconSize, CardIconType, CardInputs, CardPadding, CardPaddingNumber, CardResolvedCorners, CardRowDirection, CardRowInputs, CarouselIndicatorsVariant, CheckboxCardVariant, CheckboxGroupDirection, CheckboxSize, ClosingButtonIconSize, ClosingButtonSize, ColInputs, ColWidth, CollapseButtonArrowType, CollapseButtonSize, CollapseSize, Cols, ColumnReorderPhase, CompareWithFn, ComponentInputs, DateAfter, DateBefore, DateFieldMode, DateInterval, DatePickerDay, DatePickerInputSize, DatePickerInputState, DatePickerMatcher, DatePickerSelectorMode, DatePickerView, DateRange, DayOfWeek, DropdownApi, DropdownContentApi, DropdownItemValueLayout, DropdownItemValueType, DropdownPosition, DropdownRole, DropdownTriggerAriaHasPopup, EllipsisPosition, EmptyStateSize, EmptyStateType, FeedbackTextPosition, FeedbackTextType, FieldContext, FilterOption, FilterSize, FilterVariant, FooterSidePlacement, FooterSidePosition, FormFieldControl, FormFieldIcon, Gap, GroupByFn, HeaderContentAlignment, HeaderLanguage, HeaderLanguageLabelPosition, HeaderLoginInputs, HeaderLoginSize, HeaderLogoutInputs, HeaderLogoutSize, HeaderProfileInputs, HeaderProfileSize, HeaderSearchMobileLabels, HeaderSearchMobileVariant, HeaderTopAlignment, HeaderTopInputs, HorizontalStepperBackground, IconBackgroundColor, IconColor, IconSize, IconType, IconVariant, InputGroupContext, InputSize, InputState, JustifyItems, JustifySelf, LabelColor, LabelSize, LabelVisuallyHidden, Language, LinkInputs, LinkSize, LinkVariant, Matcher, ModalConfig, ModalFullscreen, ModalPosition, ModalScrollBehavior, ModalSize, ModalWidth, ModalWidthPreset, NumberFieldSize, OverlayPosition, OverlaySide, PaginationBackground, PaginationDividerPosition, PaginationItem, PaginationItemType, PaginationLabels, PaginationVisibility, PopoverPosition, PopoverWidth, PopoverWidthPreset, ProgressBarAnnounce, ProgressBarInputs, ProgressBarLabelPosition, ProgressBarSize, ProgressBarValuePosition, RadioCardVariant, RadioGroupDirection, RadioSize, Representative, RepresentativeIcon, RowInputs, ScrollFadePosition, ScrollFadeScrollbar, ScrollFadeSize, SearchButton, SearchSize, SelectInputSize, SelectOption, SelectOptionContext, SelectOptionGroup, SelectValueContext, SeparatorAxis, SeparatorColor, SeparatorDotSize, SeparatorSpacing, SeparatorSpacingValue, SeparatorThickness, SeparatorVariant, SideNavItemSize, SliderHideLabel, SpinnerColor, SpinnerSize, StatusBadgeColor, StatusBadgeSize, StatusBadgeStatus, StatusBadgeVariant, StatusIndicatorPosition, StatusIndicatorSize, StatusIndicatorType, TEDITheme, TableColumnMeta, TableControlColumn, TableControlColumnOrder, TableExpandTrigger, TableFilterModalData, TableFilterOptions, TablePaginationOptions, TablePersistOptions, TablePersistenceController, TableSelectionMode, TableSize, TableState, TableStatePatch, TabsOverflowMode, TagEllipsis, TagOverflowOptions, TagType, TediColumnDef, TediConfig, TediTableContextValue, TediTableFilterContext, TextColor, TextGroupInputs, TextGroupType, TextModifiers, TextareaSize, Theme, TimeFieldFullscreen, TimeFieldModal, TimeFieldPickerTrigger, TimeFieldPickerVariant, TimeFieldUseNativePicker, TimePickerVariant, TimelineCardPadding, TimelineVariant, ToastConfig, ToastPosition, ToastRole, ToastType, ToggleSize, ToggleType, ToggleVariant, TooltipOpenWith, TooltipPosition, TooltipWidth, UsePaginationArgs, VerticalSpacingSize, VirtualRow };
10414
+ export { AVAILABLE_LANGUAGES, AccordionComponent, AccordionItemComponent, AccordionItemContentComponent, AccordionItemHeaderComponent, AlertComponent, AttachmentActionsComponent, AttachmentComponent, BREAKPOINTS, BaseButtonDirective, BreadcrumbItemDirective, BreadcrumbSeparatorDirective, BreadcrumbsComponent, BreakpointService, ButtonComponent, ButtonGroupButtonDirective, ButtonGroupComponent, COUNTER_TAG_WIDTH, CalendarComponent, CardButtonComponent, CardComponent, CardContentComponent, CardHeaderComponent, CardIconComponent, CardRowComponent, CarouselComponent, CarouselContentComponent, CarouselFooterComponent, CarouselHeaderComponent, CarouselIndicatorsComponent, CarouselNavigationComponent, CarouselSlideDirective, CheckboxCardComponent, CheckboxCardGroupComponent, CheckboxComponent, CheckboxGroupComponent, ClosingButtonComponent, ColComponent, CollapseButtonComponent, CollapseComponent, DROPDOWN_API, DROPDOWN_CONTENT_API, DateFieldComponent, DatePickerComponent, DropdownComponent, DropdownContentComponent, DropdownItemComponent, DropdownItemValueComponent, DropdownItemValueLabelComponent, DropdownItemValueMetaComponent, DropdownTriggerDirective, EllipsisComponent, EmptyStateComponent, FeedbackTextComponent, FilterComponent, FilterContentDirective, FilterGroupComponent, FilterPrependDirective, FooterBodyComponent, FooterBottomComponent, FooterComponent, FooterSectionComponent, FooterSideComponent, FormFieldComponent, FormFieldExtraDirective, HeaderActionsComponent, HeaderBottomComponent, HeaderComponent, HeaderContentComponent, HeaderLanguageComponent, HeaderLoginComponent, HeaderLogoComponent, HeaderLogoDarkDirective, HeaderLogoutComponent, HeaderMobileButtonComponent, HeaderProfileComponent, HeaderRoleComponent, HeaderRoleContentDirective, HeaderRoleNoResultsDirective, HeaderRoleTitleDirective, HeaderSearchComponent, HeaderTopComponent, HideAtDirective, HorizontalPushHandler, HorizontalStepperComponent, HorizontalStepperItemComponent, IconComponent, InfoButtonComponent, InfoTooltipComponent, InputGroupComponent, InputGroupPrefixDirective, InputGroupSuffixDirective, LANGUAGE_COOKIE_NAME, LANGUAGE_FALLBACK_VALUE, LabelComponent, LabelRowComponent, LinkComponent, ListComponent, MODAL_DATA, MODAL_SIZE, ModalComponent, ModalContentComponent, ModalFooterComponent, ModalHeaderComponent, ModalRef, ModalService, NumberFieldComponent, PaginationComponent, PopoverComponent, PopoverContentComponent, PopoverTriggerDirective, ProgressBarComponent, RadioCardComponent, RadioCardGroupComponent, RadioComponent, RadioGroupComponent, RowComponent, ScrollFadeComponent, SearchComponent, SelectComponent, SelectOptionTemplateDirective, SelectTooltipTemplateDirective, SelectValueTemplateDirective, SeparatorComponent, ShowAtDirective, SideNavComponent, SideNavDropdownComponent, SideNavDropdownGroupComponent, SideNavDropdownItemComponent, SideNavGroupTitleComponent, SideNavItemComponent, SideNavOverlayComponent, SideNavToggleComponent, SkeletonBlockComponent, SkeletonComponent, SliderComponent, SpecialOptionControls, SpinnerComponent, StatusBadgeComponent, StatusIndicatorComponent, TAG_GAP, TEDI_FIELD_CONTEXT, TEDI_FORM_FIELD_CONTROL, TEDI_INPUT_GROUP, TEDI_TABLE_CONTEXT, TEDI_THEME_DEFAULT_TOKEN, TEDI_TRANSLATION_DEFAULT_TOKEN, THEME_CLASS_PREFIX, THEME_COOKIE_NAME, THEME_FALLBACK_VALUE, TOAST_DEFAULT_DURATION, TabsComponent, TabsContentComponent, TabsListComponent, TabsTriggerComponent, TagComponent, TediPaginationResultsDirective, TediTableColumnsMenuComponent, TediTableComponent, TediTableHeaderButtonComponent, TediTableToolbarComponent, TediTranslationPipe, TediTranslationService, TextComponent, TextFieldComponent, TextGroupComponent, TextGroupLabelComponent, TextGroupValueComponent, TextareaComponent, ThemeService, TimeFieldComponent, TimePickerComponent, TimelineComponent, TimelineDescriptionComponent, TimelineItemComponent, TimelineTimingsBottomDirective, TimelineTitleComponent, ToastComponent, ToastService, ToggleComponent, TooltipComponent, TooltipContentComponent, TooltipTriggerComponent, TruncateComponent, VerticalSpacingDirective, VerticalSpacingItemDirective, addDays, addMonths, addYears, breakpointInput, buildMonthGrid, calculateArrowOffset, calculateVisibleTagCount, computeGroupSpans, controlDescribedBy, cookieSignal, createTablePersistence, deriveControlState, 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 };
10415
+ export type { AccordionInputs, AlertRole, AlertSize, AlertTitleType, AlertType, AlertVariant, AlignItems, AlignSelf, ArrowOffset, ArrowType, AttachmentDirection, BreadcrumbsInputs, BreadcrumbsVariant, Breakpoint, BreakpointFlag, BreakpointInput, BreakpointInputs, BreakpointInputsWithoutSignals, BreakpointObject, BulletColor, ButtonGroupDropdownLabelMode, ButtonSize, ButtonVariant, CalendarView, CardBackground, CardBorderPlacement, CardBorderRadius, CardBorderType, CardContentInputs, CardIconSize, CardIconType, CardInputs, CardPadding, CardPaddingNumber, CardResolvedCorners, CardRowDirection, CardRowInputs, CarouselIndicatorsVariant, CheckboxCardVariant, CheckboxGroupDirection, CheckboxSize, ClosingButtonIconSize, ClosingButtonSize, ColInputs, ColWidth, CollapseButtonArrowType, CollapseButtonSize, CollapseSize, Cols, ColumnReorderPhase, CompareWithFn, ComponentInputs, ControlDescribedBy, DateAfter, DateBefore, DateFieldMode, DateInterval, DatePickerDay, DatePickerInputSize, DatePickerInputState, DatePickerMatcher, DatePickerSelectorMode, DatePickerView, DateRange, DayOfWeek, DerivedControlState, DropdownApi, DropdownContentApi, DropdownItemValueLayout, DropdownItemValueType, DropdownPosition, DropdownRole, DropdownTriggerAriaHasPopup, EllipsisPosition, EmptyStateSize, EmptyStateType, FeedbackTextPosition, FeedbackTextType, FieldContext, FilterOption, FilterSize, FilterVariant, FooterSidePlacement, FooterSidePosition, FormFieldControl, FormFieldIcon, Gap, GroupByFn, HeaderContentAlignment, HeaderLanguage, HeaderLanguageLabelPosition, HeaderLoginInputs, HeaderLoginSize, HeaderLogoutInputs, HeaderLogoutSize, HeaderProfileInputs, HeaderProfileSize, HeaderSearchMobileLabels, HeaderSearchMobileVariant, HeaderTopAlignment, HeaderTopInputs, HorizontalStepperBackground, IconBackgroundColor, IconColor, IconSize, IconType, IconVariant, InputGroupContext, InputSize, InputState, JustifyItems, JustifySelf, LabelColor, LabelSize, LabelVisuallyHidden, Language, LinkInputs, LinkSize, LinkVariant, Matcher, ModalConfig, ModalFullscreen, ModalPosition, ModalScrollBehavior, ModalSize, ModalWidth, ModalWidthPreset, NumberFieldSize, OverlayPosition, OverlaySide, PaginationBackground, PaginationDividerPosition, PaginationItem, PaginationItemType, PaginationLabels, PaginationVisibility, PopoverPosition, PopoverWidth, PopoverWidthPreset, ProgressBarAnnounce, ProgressBarInputs, ProgressBarLabelPosition, ProgressBarSize, ProgressBarValuePosition, RadioCardVariant, RadioGroupDirection, RadioSize, Representative, RepresentativeIcon, RowInputs, ScrollFadePosition, ScrollFadeScrollbar, ScrollFadeSize, SearchButton, SearchSize, SelectInputSize, SelectOption, SelectOptionContext, SelectOptionGroup, SelectValueContext, SeparatorAxis, SeparatorColor, SeparatorDotSize, SeparatorSpacing, SeparatorSpacingValue, SeparatorThickness, SeparatorVariant, SideNavItemSize, SkeletonBlockHeight, SkeletonBlockInputs, SkeletonBlockTextHeight, SkeletonBlockWidth, SliderHideLabel, SpinnerColor, SpinnerSize, StatusBadgeColor, StatusBadgeSize, StatusBadgeStatus, StatusBadgeVariant, StatusIndicatorPosition, StatusIndicatorSize, StatusIndicatorType, TEDITheme, TableColumnMeta, TableControlColumn, TableControlColumnOrder, TableExpandTrigger, TableFilterModalData, TableFilterOptions, TablePaginationOptions, TablePersistOptions, TablePersistenceController, TableSelectionMode, TableSize, TableState, TableStatePatch, TabsOverflowMode, TagEllipsis, TagOverflowOptions, TagType, TediColumnDef, TediConfig, TediTableContextValue, TediTableFilterContext, TextColor, TextGroupInputs, TextGroupType, TextModifiers, TextareaSize, Theme, TimeFieldFullscreen, TimeFieldModal, TimeFieldPickerTrigger, TimeFieldPickerVariant, TimeFieldUseNativePicker, TimePickerVariant, TimelineCardPadding, TimelineVariant, ToastConfig, ToastPosition, ToastRole, ToastType, ToggleSize, ToggleType, ToggleVariant, TooltipOpenWith, TooltipPosition, TooltipWidth, UsePaginationArgs, VerticalSpacingSize, VirtualRow };
10179
10416
  //# sourceMappingURL=index.d.ts.map