@tedi-design-system/angular 6.5.0-rc.11 → 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/community/index.d.ts +18 -0
- package/community/index.d.ts.map +1 -1
- package/fesm2022/tedi-design-system-angular-community.mjs +18 -0
- package/fesm2022/tedi-design-system-angular-community.mjs.map +1 -1
- package/fesm2022/tedi-design-system-angular-tedi.mjs +402 -7
- package/fesm2022/tedi-design-system-angular-tedi.mjs.map +1 -1
- package/package.json +1 -1
- package/tedi/index.d.ts +244 -4
- package/tedi/index.d.ts.map +1 -1
package/package.json
CHANGED
package/tedi/index.d.ts
CHANGED
|
@@ -112,6 +112,21 @@ 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
|
+
|
|
115
130
|
/**
|
|
116
131
|
* Grid breakpoints in `rem`, mirroring `$grid-breakpoints` in
|
|
117
132
|
* `@tedi-design-system/core`. `rem` is used (instead of `px`) so breakpoints
|
|
@@ -1815,6 +1830,204 @@ declare class ClosingButtonComponent {
|
|
|
1815
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>;
|
|
1816
1831
|
}
|
|
1817
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>;
|
|
2029
|
+
}
|
|
2030
|
+
|
|
1818
2031
|
type BulletColor = "primary" | "secondary" | "tertiary" | "brand" | "brand-dark" | "success" | "warning" | "warning-dark" | "danger" | "white";
|
|
1819
2032
|
declare class ListComponent {
|
|
1820
2033
|
/**
|
|
@@ -5455,28 +5668,55 @@ declare class SeparatorComponent {
|
|
|
5455
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>;
|
|
5456
5669
|
}
|
|
5457
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
|
+
|
|
5458
5683
|
type TimelineItemState = "current" | "past" | "future";
|
|
5459
5684
|
declare class TimelineItemComponent implements OnInit, OnDestroy {
|
|
5460
5685
|
/** Item timings */
|
|
5461
5686
|
timings: _angular_core.InputSignal<string[]>;
|
|
5462
5687
|
timeline: TimelineComponent | null;
|
|
5688
|
+
protected isMobile: _angular_core.Signal<boolean>;
|
|
5689
|
+
protected timingsBottom: _angular_core.Signal<TimelineTimingsBottomDirective | undefined>;
|
|
5463
5690
|
ngOnInit(): void;
|
|
5464
5691
|
ngOnDestroy(): void;
|
|
5465
5692
|
isLast: _angular_core.Signal<boolean>;
|
|
5466
5693
|
state: _angular_core.Signal<TimelineItemState>;
|
|
5467
5694
|
color: _angular_core.Signal<SeparatorColor>;
|
|
5468
5695
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TimelineItemComponent, never>;
|
|
5469
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TimelineItemComponent, "tedi-timeline-item", never, { "timings": { "alias": "timings"; "required": false; "isSignal": true; }; }, {},
|
|
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>;
|
|
5470
5697
|
}
|
|
5471
5698
|
|
|
5699
|
+
type TimelineVariant = "default" | "card";
|
|
5700
|
+
type TimelineCardPadding = CardPaddingNumber;
|
|
5472
5701
|
declare class TimelineComponent {
|
|
5473
5702
|
/** Index of active item */
|
|
5474
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>;
|
|
5475
5715
|
items: _angular_core.WritableSignal<TimelineItemComponent[]>;
|
|
5476
5716
|
registerItem(item: TimelineItemComponent): void;
|
|
5477
5717
|
unregisterItem(item: TimelineItemComponent): void;
|
|
5478
5718
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TimelineComponent, never>;
|
|
5479
|
-
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>;
|
|
5480
5720
|
}
|
|
5481
5721
|
|
|
5482
5722
|
declare class TimelineDescriptionComponent {
|
|
@@ -6547,6 +6787,6 @@ declare const TEDI_THEME_DEFAULT_TOKEN: InjectionToken<string>;
|
|
|
6547
6787
|
|
|
6548
6788
|
declare const TEDI_TRANSLATION_DEFAULT_TOKEN: InjectionToken<Language>;
|
|
6549
6789
|
|
|
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 };
|
|
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 };
|
|
6552
6792
|
//# sourceMappingURL=index.d.ts.map
|