@ethlete/components 0.1.0-next.15 → 0.1.0-next.16
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/CHANGELOG.md +32 -0
- package/fesm2022/ethlete-components.mjs +86 -78
- package/fesm2022/ethlete-components.mjs.map +1 -1
- package/generators/generators.json +9 -0
- package/generators/icons/generator.js +183 -0
- package/generators/icons/schema.json +35 -0
- package/package.json +8 -1
- package/types/ethlete-components.d.ts +58 -16
|
@@ -0,0 +1,183 @@
|
|
|
1
|
+
import { formatFiles, logger, workspaceRoot } from '@nx/devkit';
|
|
2
|
+
import { existsSync, readFileSync } from 'node:fs';
|
|
3
|
+
import { dirname, join } from 'node:path';
|
|
4
|
+
//#endregion
|
|
5
|
+
//#region Constants
|
|
6
|
+
// Known SVG sources, tried in order during auto-detection. All use a `svgs/<variant>/<name>.svg` layout.
|
|
7
|
+
const KNOWN_SOURCES = ['@fortawesome/fontawesome-pro', '@fortawesome/fontawesome-free'];
|
|
8
|
+
const DEFAULT_CONFIG_PATH = 'src/icons.json';
|
|
9
|
+
const DEFAULT_OUTPUT_PATH = 'src/generated/et-icons.ts';
|
|
10
|
+
const DEFAULT_VARIANT = 'solid';
|
|
11
|
+
//#endregion
|
|
12
|
+
export default async function generate(tree, schema) {
|
|
13
|
+
logger.log('\n🎨 Starting Ethlete icon generator...\n');
|
|
14
|
+
const configPath = schema.configPath || DEFAULT_CONFIG_PATH;
|
|
15
|
+
const outputPath = schema.outputPath || DEFAULT_OUTPUT_PATH;
|
|
16
|
+
const typesOutputPath = schema.typesOutputPath || join(dirname(outputPath), 'et-icon-registry.d.ts');
|
|
17
|
+
// Step 1: Read the icons config.
|
|
18
|
+
if (!tree.exists(configPath)) {
|
|
19
|
+
logger.error(`❌ Icons config not found at: ${configPath}`);
|
|
20
|
+
logger.log(`\nCreate one, or point to it with --configPath. Example ${configPath}:`);
|
|
21
|
+
logger.log(` { "source": "auto", "defaultVariant": "solid", "icons": ["plus", { "name": "shield", "variants": ["light", "solid"] }] }\n`);
|
|
22
|
+
return;
|
|
23
|
+
}
|
|
24
|
+
let config;
|
|
25
|
+
try {
|
|
26
|
+
config = JSON.parse(tree.read(configPath, 'utf-8') || '');
|
|
27
|
+
}
|
|
28
|
+
catch (error) {
|
|
29
|
+
logger.error(`❌ Failed to parse ${configPath}: ${error instanceof Error ? error.message : String(error)}`);
|
|
30
|
+
return;
|
|
31
|
+
}
|
|
32
|
+
if (!Array.isArray(config.icons) || config.icons.length === 0) {
|
|
33
|
+
logger.error(`❌ ${configPath} must contain a non-empty "icons" array.`);
|
|
34
|
+
return;
|
|
35
|
+
}
|
|
36
|
+
const defaultVariant = config.defaultVariant || DEFAULT_VARIANT;
|
|
37
|
+
// Step 2: Resolve the SVG source package.
|
|
38
|
+
const requestedSource = schema.source && schema.source !== 'auto' ? schema.source : config.source;
|
|
39
|
+
const source = resolveSource(requestedSource);
|
|
40
|
+
if (!source) {
|
|
41
|
+
logger.error('❌ Could not find an icon source. Install @fortawesome/fontawesome-pro (or -free), or set "source".');
|
|
42
|
+
return;
|
|
43
|
+
}
|
|
44
|
+
logger.log(`📦 Using icon source: ${source.package}`);
|
|
45
|
+
// Step 3: Read + transform each icon's SVG.
|
|
46
|
+
const requested = normalizeIcons(config.icons, defaultVariant);
|
|
47
|
+
const resolved = [];
|
|
48
|
+
const missing = [];
|
|
49
|
+
for (const icon of requested) {
|
|
50
|
+
const svgPath = join(source.svgsDir, icon.variant, `${icon.name}.svg`);
|
|
51
|
+
if (!existsSync(svgPath)) {
|
|
52
|
+
missing.push(`${icon.name} (${icon.variant})`);
|
|
53
|
+
continue;
|
|
54
|
+
}
|
|
55
|
+
resolved.push({ ...icon, data: toIconData(readFileSync(svgPath, 'utf-8')) });
|
|
56
|
+
}
|
|
57
|
+
if (missing.length) {
|
|
58
|
+
logger.warn(`⚠️ ${missing.length} icon(s) not found in ${source.package} and skipped:\n - ${missing.join('\n - ')}`);
|
|
59
|
+
}
|
|
60
|
+
if (resolved.length === 0) {
|
|
61
|
+
logger.error('❌ No icons could be resolved. Nothing was written.');
|
|
62
|
+
return;
|
|
63
|
+
}
|
|
64
|
+
// Step 4: Write the IconDefinition constants.
|
|
65
|
+
tree.write(outputPath, generateIconsFile(resolved, schema, source.package));
|
|
66
|
+
logger.log(`✅ Generated ${resolved.length} icon(s) at: ${outputPath}`);
|
|
67
|
+
// Step 5: Write the type augmentation so `etIcon`/`variant` are checked against these names.
|
|
68
|
+
tree.write(typesOutputPath, generateTypesFile(resolved, schema));
|
|
69
|
+
logger.log(`✅ Generated icon name types at: ${typesOutputPath}`);
|
|
70
|
+
if (!schema.skipFormat) {
|
|
71
|
+
await formatFiles(tree);
|
|
72
|
+
}
|
|
73
|
+
logger.log('\n✅ Icon generation completed successfully!\n');
|
|
74
|
+
}
|
|
75
|
+
//#region Helpers
|
|
76
|
+
function resolveSource(requested) {
|
|
77
|
+
const candidates = requested ? [requested] : KNOWN_SOURCES;
|
|
78
|
+
for (const pkg of candidates) {
|
|
79
|
+
const svgsDir = join(workspaceRoot, 'node_modules', pkg, 'svgs');
|
|
80
|
+
if (existsSync(svgsDir)) {
|
|
81
|
+
return { package: pkg, svgsDir };
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
return null;
|
|
85
|
+
}
|
|
86
|
+
function normalizeIcons(entries, defaultVariant) {
|
|
87
|
+
const seen = new Set();
|
|
88
|
+
const result = [];
|
|
89
|
+
const add = (name, variant) => {
|
|
90
|
+
const key = `${name}::${variant}`;
|
|
91
|
+
if (!seen.has(key)) {
|
|
92
|
+
seen.add(key);
|
|
93
|
+
result.push({ name, variant });
|
|
94
|
+
}
|
|
95
|
+
};
|
|
96
|
+
for (const entry of entries) {
|
|
97
|
+
if (typeof entry === 'string') {
|
|
98
|
+
add(entry, defaultVariant);
|
|
99
|
+
continue;
|
|
100
|
+
}
|
|
101
|
+
const variants = entry.variants ?? [entry.variant ?? defaultVariant];
|
|
102
|
+
for (const variant of variants) {
|
|
103
|
+
add(entry.name, variant);
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
// Stable ordering keeps regeneration diffs minimal.
|
|
107
|
+
return result.sort((a, b) => `${a.name}::${a.variant}`.localeCompare(`${b.name}::${b.variant}`));
|
|
108
|
+
}
|
|
109
|
+
/** Make a raw SVG etIcon-compatible: fill its host, inherit currentColor, drop the license comment. */
|
|
110
|
+
function toIconData(rawSvg) {
|
|
111
|
+
return rawSvg
|
|
112
|
+
.replace(/<!--[\s\S]*?-->/g, '')
|
|
113
|
+
.replace('<svg ', '<svg width="100%" height="100%" fill="currentColor" ')
|
|
114
|
+
.replace(/\s+/g, ' ')
|
|
115
|
+
.trim();
|
|
116
|
+
}
|
|
117
|
+
/** `shield` + `light` -> `SHIELD_LIGHT` */
|
|
118
|
+
function constName(name, variant) {
|
|
119
|
+
return `${name}_${variant}`.replace(/[^a-z0-9]+/gi, '_').toUpperCase();
|
|
120
|
+
}
|
|
121
|
+
function regenerateCommand(schema) {
|
|
122
|
+
const parts = ['nx g @ethlete/components:icons'];
|
|
123
|
+
if (schema.configPath)
|
|
124
|
+
parts.push(`--configPath=${schema.configPath}`);
|
|
125
|
+
if (schema.outputPath)
|
|
126
|
+
parts.push(`--outputPath=${schema.outputPath}`);
|
|
127
|
+
if (schema.typesOutputPath)
|
|
128
|
+
parts.push(`--typesOutputPath=${schema.typesOutputPath}`);
|
|
129
|
+
if (schema.source && schema.source !== 'auto')
|
|
130
|
+
parts.push(`--source=${schema.source}`);
|
|
131
|
+
return parts.join(' ');
|
|
132
|
+
}
|
|
133
|
+
function generateIconsFile(icons, schema, source) {
|
|
134
|
+
const header = `/* eslint-disable */
|
|
135
|
+
// AUTO-GENERATED by @ethlete/components:icons from "${source}" — DO NOT EDIT.
|
|
136
|
+
// Regenerate by running:
|
|
137
|
+
// ${regenerateCommand(schema)}
|
|
138
|
+
import type { IconDefinition } from '@ethlete/components';
|
|
139
|
+
`;
|
|
140
|
+
const consts = icons
|
|
141
|
+
.map((icon) => `export const ${constName(icon.name, icon.variant)}: IconDefinition = {\n` +
|
|
142
|
+
` name: '${icon.name}',\n` +
|
|
143
|
+
` variant: '${icon.variant}',\n` +
|
|
144
|
+
` data: \`${icon.data}\`,\n` +
|
|
145
|
+
`};`)
|
|
146
|
+
.join('\n\n');
|
|
147
|
+
const aggregate = `export const GENERATED_ICONS = [\n${icons
|
|
148
|
+
.map((icon) => ` ${constName(icon.name, icon.variant)},`)
|
|
149
|
+
.join('\n')}\n] as const;`;
|
|
150
|
+
return `${header}\n${consts}\n\n${aggregate}\n`;
|
|
151
|
+
}
|
|
152
|
+
function generateTypesFile(icons, schema) {
|
|
153
|
+
const names = [...new Set(icons.map((i) => i.name))]
|
|
154
|
+
.sort()
|
|
155
|
+
.map((n) => `'${n}'`)
|
|
156
|
+
.join(' | ');
|
|
157
|
+
const variants = [...new Set(icons.map((i) => i.variant))]
|
|
158
|
+
.sort()
|
|
159
|
+
.map((v) => `'${v}'`)
|
|
160
|
+
.join(' | ');
|
|
161
|
+
return `/*
|
|
162
|
+
* Auto-generated by @ethlete/components:icons
|
|
163
|
+
* DO NOT EDIT THIS FILE MANUALLY
|
|
164
|
+
*
|
|
165
|
+
* Regenerate by running:
|
|
166
|
+
* ${regenerateCommand(schema)}
|
|
167
|
+
*/
|
|
168
|
+
|
|
169
|
+
declare module '@ethlete/components' {
|
|
170
|
+
interface EthleteIconNameRegistry {
|
|
171
|
+
name: ${names};
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
interface EthleteIconVariantRegistry {
|
|
175
|
+
name: ${variants};
|
|
176
|
+
}
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
export {};
|
|
180
|
+
`;
|
|
181
|
+
}
|
|
182
|
+
//#endregion
|
|
183
|
+
//# sourceMappingURL=generator.js.map
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/schema",
|
|
3
|
+
"$id": "et-icons",
|
|
4
|
+
"title": "Ethlete Icon Generator",
|
|
5
|
+
"description": "Generates etIcon IconDefinitions and typed names from an installed SVG icon source. Auto-detects Font Awesome (pro, then free).",
|
|
6
|
+
"type": "object",
|
|
7
|
+
"properties": {
|
|
8
|
+
"configPath": {
|
|
9
|
+
"type": "string",
|
|
10
|
+
"description": "Path to the icons config JSON (relative to workspace root). Lists the icons/variants to generate.",
|
|
11
|
+
"default": "src/icons.json",
|
|
12
|
+
"x-prompt": "Where is your icons config file?"
|
|
13
|
+
},
|
|
14
|
+
"outputPath": {
|
|
15
|
+
"type": "string",
|
|
16
|
+
"description": "Where to write the generated IconDefinition constants (.ts).",
|
|
17
|
+
"default": "src/generated/et-icons.ts"
|
|
18
|
+
},
|
|
19
|
+
"typesOutputPath": {
|
|
20
|
+
"type": "string",
|
|
21
|
+
"description": "Where to write the generated name/variant type augmentation (.d.ts). Defaults to 'et-icon-registry.d.ts' next to outputPath."
|
|
22
|
+
},
|
|
23
|
+
"source": {
|
|
24
|
+
"type": "string",
|
|
25
|
+
"description": "Icon source package to read SVGs from (expects a `svgs/<variant>/<name>.svg` layout). 'auto' detects Font Awesome pro then free.",
|
|
26
|
+
"default": "auto"
|
|
27
|
+
},
|
|
28
|
+
"skipFormat": {
|
|
29
|
+
"type": "boolean",
|
|
30
|
+
"description": "Skip formatting files after generation.",
|
|
31
|
+
"default": false
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"required": []
|
|
35
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ethlete/components",
|
|
3
|
-
"version": "0.1.0-next.
|
|
3
|
+
"version": "0.1.0-next.16",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"peerDependencies": {
|
|
@@ -13,8 +13,15 @@
|
|
|
13
13
|
"@angular/router": "22.0.5",
|
|
14
14
|
"@ethlete/core": "^5.0.0-beta.11",
|
|
15
15
|
"@floating-ui/dom": "1.7.6",
|
|
16
|
+
"@nx/devkit": "23.1.0-beta.7",
|
|
16
17
|
"rxjs": "7.8.2"
|
|
17
18
|
},
|
|
19
|
+
"peerDependenciesMeta": {
|
|
20
|
+
"@nx/devkit": {
|
|
21
|
+
"optional": true
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
"generators": "./generators/generators.json",
|
|
18
25
|
"module": "fesm2022/ethlete-components.mjs",
|
|
19
26
|
"typings": "types/ethlete-components.d.ts",
|
|
20
27
|
"exports": {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as _angular_core from '@angular/core';
|
|
2
2
|
import { Signal, WritableSignal, InjectionToken, ElementRef, Type, InputSignal, ViewContainerRef, Injector, StaticProvider, TemplateRef, OnInit, ComponentRef, OnDestroy, computed, Provider, EnvironmentInjector, ApplicationRef, Binding } from '@angular/core';
|
|
3
3
|
import * as _ethlete_core from '@ethlete/core';
|
|
4
|
-
import { AnimatableDirective, ResizeEdge, DragHandleDirective, ResizeMoveEvent, OverlayRuntimePositionStrategy, Breakpoint, OverlayRuntimeRef, AnimatedLifecycleDirective, OverlayRuntimeCloseSource, AnimatedLifecycleState, AngularRenderer, OverlayRuntimeAnimationDelegate, ScrollObserverDirective, ScrollToElementOptions, ConsentHandler, ProvideColorDirective
|
|
4
|
+
import { AnimatableDirective, ResizeEdge, DragHandleDirective, ResizeMoveEvent, OverlayRuntimePositionStrategy, Breakpoint, OverlayRuntimeRef, AnimatedLifecycleDirective, OverlayRuntimeCloseSource, AnimatedLifecycleState, AngularRenderer, OverlayRuntimeAnimationDelegate, ScrollObserverDirective, ScrollToElementOptions, ConsentHandler, ProvideColorDirective } from '@ethlete/core';
|
|
5
5
|
import * as _angular_forms_signals from '@angular/forms/signals';
|
|
6
6
|
import { ValidationError, FormCheckboxControl, FormValueControl } from '@angular/forms/signals';
|
|
7
7
|
import * as _ethlete_components from '@ethlete/components';
|
|
@@ -1560,8 +1560,45 @@ declare const GridImports: readonly [typeof GridComponent, typeof GridItemCompon
|
|
|
1560
1560
|
|
|
1561
1561
|
type IconDefinition = {
|
|
1562
1562
|
name: string;
|
|
1563
|
+
/**
|
|
1564
|
+
* Optional style variant (e.g. `'solid'`, `'light'`, `'regular'`). Lets the same icon
|
|
1565
|
+
* `name` exist in several styles without encoding the style into the name. Icons
|
|
1566
|
+
* registered without a variant are matched by their bare name.
|
|
1567
|
+
*/
|
|
1568
|
+
variant?: string;
|
|
1563
1569
|
data: string;
|
|
1564
1570
|
};
|
|
1571
|
+
/**
|
|
1572
|
+
* Augmentable registry for the literal set of icon names an app uses. Empty by default,
|
|
1573
|
+
* which keeps `etIcon` typed as plain `string`. The `@ethlete/components:icons` generator
|
|
1574
|
+
* writes an augmentation for this interface, or you can augment it manually:
|
|
1575
|
+
*
|
|
1576
|
+
* ```ts
|
|
1577
|
+
* declare module '@ethlete/components' {
|
|
1578
|
+
* interface EthleteIconNameRegistry {
|
|
1579
|
+
* name: 'shield' | 'plus';
|
|
1580
|
+
* }
|
|
1581
|
+
* }
|
|
1582
|
+
* ```
|
|
1583
|
+
*/
|
|
1584
|
+
interface EthleteIconNameRegistry {
|
|
1585
|
+
}
|
|
1586
|
+
/**
|
|
1587
|
+
* Augmentable registry for the literal set of icon variants an app uses. Empty by default,
|
|
1588
|
+
* which keeps the `variant` input typed as plain `string`. See {@link EthleteIconNameRegistry}.
|
|
1589
|
+
*/
|
|
1590
|
+
interface EthleteIconVariantRegistry {
|
|
1591
|
+
}
|
|
1592
|
+
type RegisteredIconName = EthleteIconNameRegistry extends {
|
|
1593
|
+
name: infer N extends string;
|
|
1594
|
+
} ? N : string;
|
|
1595
|
+
type RegisteredIconVariant = EthleteIconVariantRegistry extends {
|
|
1596
|
+
name: infer V extends string;
|
|
1597
|
+
} ? V : string;
|
|
1598
|
+
/** Variant the {@link IconDirective} falls back to when `etIcon` is used without an explicit `variant`. */
|
|
1599
|
+
declare const DEFAULT_ICON_VARIANT = "solid";
|
|
1600
|
+
/** Composite registry key for an icon `name` plus an optional `variant`. */
|
|
1601
|
+
declare const iconRegistryKey: (name: string, variant?: string | null) => string;
|
|
1565
1602
|
declare const ICONS_TOKEN: InjectionToken<Record<string, IconDefinition>>;
|
|
1566
1603
|
declare const provideIcons: (...icons: IconDefinition[]) => {
|
|
1567
1604
|
provide: InjectionToken<Record<string, IconDefinition>>;
|
|
@@ -1605,12 +1642,20 @@ declare class IconDirective {
|
|
|
1605
1642
|
private icons;
|
|
1606
1643
|
private sanitizer;
|
|
1607
1644
|
iconNameToUse: _angular_core.InputSignal<string>;
|
|
1645
|
+
/**
|
|
1646
|
+
* Style variant to resolve (e.g. `'light'`). When omitted, the directive matches a
|
|
1647
|
+
* variant-less registration first, then falls back to the `'solid'` variant — so
|
|
1648
|
+
* `<i etIcon="shield">` resolves the solid style and `<i etIcon="shield" variant="light">`
|
|
1649
|
+
* the light one, without encoding the variant into the name.
|
|
1650
|
+
*/
|
|
1651
|
+
variant: _angular_core.InputSignal<string | undefined>;
|
|
1608
1652
|
allowHardcodedColor: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
1653
|
+
private resolvedIcon;
|
|
1609
1654
|
iconSrc: _angular_core.Signal<_angular_platform_browser.SafeHtml | null>;
|
|
1610
1655
|
hostClasses: _angular_core.Signal<string>;
|
|
1611
1656
|
constructor();
|
|
1612
1657
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<IconDirective, never>;
|
|
1613
|
-
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<IconDirective, "[etIcon]", never, { "iconNameToUse": { "alias": "etIcon"; "required": true; "isSignal": true; }; "allowHardcodedColor": { "alias": "allowHardcodedColor"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1658
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<IconDirective, "[etIcon]", never, { "iconNameToUse": { "alias": "etIcon"; "required": true; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "allowHardcodedColor": { "alias": "allowHardcodedColor"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1614
1659
|
}
|
|
1615
1660
|
|
|
1616
1661
|
declare const ITALIC_ICON: IconDefinition;
|
|
@@ -3011,6 +3056,7 @@ declare class OverlayRouterOutletComponent {
|
|
|
3011
3056
|
private injector;
|
|
3012
3057
|
private overlayRef;
|
|
3013
3058
|
private elementRef;
|
|
3059
|
+
private document;
|
|
3014
3060
|
protected router: _ethlete_components.OverlayRouter;
|
|
3015
3061
|
private renderer;
|
|
3016
3062
|
disabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
@@ -3025,6 +3071,12 @@ declare class OverlayRouterOutletComponent {
|
|
|
3025
3071
|
constructor();
|
|
3026
3072
|
scrollActivePageTo(options?: ScrollToOptions | undefined): void;
|
|
3027
3073
|
disabledPageAnimationStateChange(state: AnimatedLifecycleState): void;
|
|
3074
|
+
/**
|
|
3075
|
+
* Moves focus into the freshly navigated page, mirroring the overlay's own open-time focus behaviour
|
|
3076
|
+
* (first-tabbable by default, so buttons/inputs win over headings). Falls back to the page wrapper when
|
|
3077
|
+
* the page has nothing tabbable. Respects the overlay's `autoFocus` config, including `false`.
|
|
3078
|
+
*/
|
|
3079
|
+
private focusActivePage;
|
|
3028
3080
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<OverlayRouterOutletComponent, never>;
|
|
3029
3081
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<OverlayRouterOutletComponent, "et-overlay-router-outlet", never, { "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, {}, ["sharedRouteTemplate", "outletDisabledTemplate"], ["*"], true, never>;
|
|
3030
3082
|
}
|
|
@@ -5439,23 +5491,18 @@ declare class ToggletipDirective {
|
|
|
5439
5491
|
|
|
5440
5492
|
declare class ToggletipComponent {
|
|
5441
5493
|
private ownColorProvider;
|
|
5442
|
-
private ownSurfaceProvider;
|
|
5443
5494
|
private triggerColorProvider;
|
|
5444
|
-
private triggerSurfaceProvider;
|
|
5445
5495
|
protected injector: Injector;
|
|
5446
|
-
private surfaceThemes;
|
|
5447
5496
|
toggletipId: _angular_core.InputSignal<string>;
|
|
5448
5497
|
protected contentId: _angular_core.InputSignal<string>;
|
|
5449
5498
|
content: _angular_core.InputSignal<ToggletipContent>;
|
|
5450
5499
|
colorProvider: _angular_core.InputSignal<ProvideColorDirective | null>;
|
|
5451
|
-
surfaceProvider: _angular_core.InputSignal<ProvideSurfaceDirective | null>;
|
|
5452
5500
|
hasTemplate: _angular_core.Signal<boolean>;
|
|
5453
5501
|
contentText: _angular_core.Signal<string | null>;
|
|
5454
5502
|
contentTemplate: _angular_core.Signal<TemplateRef<unknown> | null>;
|
|
5455
|
-
resolvedSurface: _angular_core.Signal<string | null>;
|
|
5456
5503
|
constructor();
|
|
5457
5504
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ToggletipComponent, never>;
|
|
5458
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ToggletipComponent, "et-toggletip", never, { "toggletipId": { "alias": "toggletipId"; "required": true; "isSignal": true; }; "contentId": { "alias": "contentId"; "required": true; "isSignal": true; }; "content": { "alias": "content"; "required": true; "isSignal": true; }; "colorProvider": { "alias": "colorProvider"; "required": true; "isSignal": true; };
|
|
5505
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ToggletipComponent, "et-toggletip", never, { "toggletipId": { "alias": "toggletipId"; "required": true; "isSignal": true; }; "contentId": { "alias": "contentId"; "required": true; "isSignal": true; }; "content": { "alias": "content"; "required": true; "isSignal": true; }; "colorProvider": { "alias": "colorProvider"; "required": true; "isSignal": true; }; }, {}, never, never, true, [{ directive: typeof _ethlete_core.ProvideColorDirective; inputs: {}; outputs: {}; }, { directive: typeof _ethlete_core.AutoSurfaceDirective; inputs: { "surfaceProvider": "surfaceProvider"; }; outputs: {}; }]>;
|
|
5459
5506
|
}
|
|
5460
5507
|
|
|
5461
5508
|
declare class ToggletipCloseDirective {
|
|
@@ -5486,21 +5533,16 @@ declare const TOGGLETIP_IMPORTS: readonly [typeof ToggletipDirective, typeof Tog
|
|
|
5486
5533
|
|
|
5487
5534
|
declare class TooltipComponent {
|
|
5488
5535
|
private ownColorProvider;
|
|
5489
|
-
private ownSurfaceProvider;
|
|
5490
5536
|
private triggerColorProvider;
|
|
5491
|
-
private triggerSurfaceProvider;
|
|
5492
|
-
private surfaceThemes;
|
|
5493
5537
|
tooltipId: _angular_core.InputSignal<string>;
|
|
5494
5538
|
content: _angular_core.InputSignal<TooltipContent>;
|
|
5495
5539
|
colorProvider: _angular_core.InputSignal<ProvideColorDirective | null>;
|
|
5496
|
-
surfaceProvider: _angular_core.InputSignal<ProvideSurfaceDirective | null>;
|
|
5497
5540
|
hasTemplate: _angular_core.Signal<boolean>;
|
|
5498
5541
|
contentText: _angular_core.Signal<string | null>;
|
|
5499
5542
|
contentTemplate: _angular_core.Signal<TemplateRef<unknown> | null>;
|
|
5500
|
-
resolvedSurface: _angular_core.Signal<string | null>;
|
|
5501
5543
|
constructor();
|
|
5502
5544
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TooltipComponent, never>;
|
|
5503
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TooltipComponent, "et-tooltip", never, { "tooltipId": { "alias": "tooltipId"; "required": true; "isSignal": true; }; "content": { "alias": "content"; "required": true; "isSignal": true; }; "colorProvider": { "alias": "colorProvider"; "required": true; "isSignal": true; };
|
|
5545
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TooltipComponent, "et-tooltip", never, { "tooltipId": { "alias": "tooltipId"; "required": true; "isSignal": true; }; "content": { "alias": "content"; "required": true; "isSignal": true; }; "colorProvider": { "alias": "colorProvider"; "required": true; "isSignal": true; }; }, {}, never, never, true, [{ directive: typeof _ethlete_core.ProvideColorDirective; inputs: {}; outputs: {}; }, { directive: typeof _ethlete_core.AutoSurfaceDirective; inputs: { "surfaceProvider": "surfaceProvider"; }; outputs: {}; }]>;
|
|
5504
5546
|
}
|
|
5505
5547
|
|
|
5506
5548
|
type TooltipContent = string | TemplateRef<unknown>;
|
|
@@ -5547,5 +5589,5 @@ declare const TOOLTIP_ERROR_CODES: {
|
|
|
5547
5589
|
|
|
5548
5590
|
declare const TOOLTIP_IMPORTS: readonly [typeof TooltipDirective, typeof TooltipComponent];
|
|
5549
5591
|
|
|
5550
|
-
export { ARROW_OUT_UP_RIGHT_ICON, ARROW_RIGHT_ICON, BOLD_ICON, BUTTON_ICON_ALIGNMENTS, BUTTON_IMPORTS, BUTTON_SIZES, BUTTON_SPINNER_CONFIG, BUTTON_TYPES, BUTTON_VARIANTS, BrandLoaderComponent, ButtonComponent, ButtonDirective, ButtonStylesDirective, CHECKBOX_IMPORTS, CHEVRON_ICON, CHOICE_FIELD_IMPORTS, CLIPBOARD_CHECK_ICON, CheckboxComponent, CheckboxDirective, CheckboxGroupComponent, CheckboxOptionComponent, ChoiceFieldComponent, DAILYMOTION_PLAYER_TOKEN, DEFAULT_BREAKPOINTS, DEFAULT_NOTIFICATION_MANAGER_CONFIG, DEFAULT_PIP_WINDOW_CONFIG, DEFAULT_STREAM_PLAYER_STATE, DailymotionPlayerComponent, DailymotionPlayerDirective, DailymotionPlayerParamsDirective, DailymotionPlayerSlotComponent, DescriptionComponent, FACEBOOK_PLAYER_TOKEN, FLOPPY_DISK_ICON, FOCUS_FRAME_ICON, FORM_FIELD_APPEARANCES, FORM_FIELD_CONTROL_TYPES, FORM_FIELD_ERROR_CODES, FORM_FIELD_FILLS, FORM_FIELD_IMPORTS, FORM_FIELD_LABEL_MODES, FORM_FIELD_SIZES, FORM_FIELD_TOKEN, FabComponent, FacebookPlayerComponent, FacebookPlayerDirective, FacebookPlayerParamsDirective, FacebookPlayerSlotComponent, FocusRingDirective, FormErrorComponent, FormFieldComponent, FormFieldDirective, GRID_2X2_ICON, GRID_ERROR_CODES, GRID_TOKEN, GridComponent, GridDebugComponent, GridDirective, GridDragDirective, GridImports, GridItemComponent, GridItemDefaultActionsComponent, GridItemDirective, GridItemRef, GridItemToolbarComponent, GridResizeDirective, HEADING_1_ICON, HEADING_2_ICON, HEADING_3_ICON, HintComponent, ICONS_TOKEN, ICON_DIRECTIVE_TOKEN, ICON_ERROR_CODES, ICON_IMPORTS, INPUT_IMPORTS, INPUT_TEXT_ALIGNMENTS, INPUT_TYPES, ITALIC_ICON, IconButtonComponent, IconDirective, InputComponent, InputDirective, InputPrefixDirective, InputSuffixDirective, KICK_PLAYER_TOKEN, KickPlayerComponent, KickPlayerDirective, KickPlayerParamsDirective, KickPlayerSlotComponent, LINK_ICON, LIST_BULLETED_ICON, LIST_NUMBERED_ICON, LOCK_ICON, LabelDirective, MENU_ERROR_CODES, MENU_IMPORTS, MENU_ITEM_VARIANTS, MENU_SELECTION_GROUP_MULTIPLE, MENU_SELECTION_GROUP_TOKEN, MENU_SELECTION_ITEM_KIND, MenuCheckboxGroupComponent, MenuCheckboxItemComponent, MenuComponent, MenuContextTriggerDirective, MenuDirective, MenuGroupLabelComponent, MenuItemComponent, MenuItemDirective, MenuItemShortcutComponent, MenuPanelDirective, MenuRadioGroupComponent, MenuRadioItemComponent, MenuSearchDirective, MenuSelectionGroupDirective, MenuSelectionItemDirective, MenuSeparatorComponent, MenuSurfaceDirective, MenuTriggerDirective, NAV_TABS_TOKEN, NOTIFICATION_ERROR_CODES, NOTIFICATION_IMPORTS, NOTIFICATION_STACK_CONTEXT_TOKEN, NOTIFICATION_STATUS, NavTabImports, NavTabLinkComponent, NavTabLinkDirective, NavTabsComponent, NavTabsDirective, NavTabsOutletComponent, NavTabsOutletDirective, NotificationActionDirective, NotificationComponent, NotificationDirective, NotificationDismissDirective, NotificationItemDirective, NotificationStackDirective, OVERLAY_BACK_OR_CLOSE_TOKEN, OVERLAY_BODY_TOKEN, OVERLAY_CONFIG_CLASS_KEYS, OVERLAY_CONTENT_IMPORTS, OVERLAY_ERROR_CODES, OVERLAY_FOOTER_TOKEN, OVERLAY_HEADER_TEMPLATE_TOKEN, OVERLAY_HEADER_TOKEN, OVERLAY_IMPORTS, OVERLAY_MAIN_TOKEN, OVERLAY_QUERY_PARAM_INPUT_NAME, OVERLAY_REF, OVERLAY_ROUTER_CONFIG_TOKEN, OVERLAY_ROUTER_LINK_TOKEN, OVERLAY_ROUTER_OUTLET_DISABLED_TEMPLATE_TOKEN, OVERLAY_ROUTER_OUTLET_TOKEN, OVERLAY_ROUTER_TOKEN, OVERLAY_SHARED_ROUTE_TEMPLATE_TOKEN, OverlayAnchorDirective, OverlayBackOrCloseDirective, OverlayBodyComponent, OverlayCloseDirective, OverlayContainerComponent, OverlayDirective, OverlayFooterDirective, OverlayHandlerLinkDirective, OverlayHeaderDirective, OverlayHeaderTemplateDirective, OverlayMainDirective, OverlayOriginCloneComponent, OverlayRouteHeaderTemplateOutletComponent, OverlayRouterLinkDirective, OverlayRouterOutletComponent, OverlayRouterOutletDisabledTemplateDirective, OverlaySharedRouteTemplateDirective, OverlaySharedRouteTemplateOutletComponent, OverlaySidebarComponent, OverlaySidebarPageComponent, OverlaySurfaceDirective, OverlayTitleDirective, OverlayTriggerDirective, PENCIL_ICON, PIP_CHROME_REF_TOKEN, PIP_ENTRY_TOKEN, PIP_WINDOW_ASPECT_RATIO_TOKEN, PLUS_ICON, PipBackDirective, PipBringBackDirective, PipCellDirective, PipCloseDirective, PipCollapseOverlayDirective, PipGridToggleDirective, PipPlayerComponent, PipSlotPlaceholderComponent, PipStageDirective, PipTitleBarDirective, PipTitleBarTemplateDirective, PipWindowComponent, PipWindowParamsDirective, ProgressBarComponent, RICH_TEXT_EDITOR_IMPORTS, RadioComponent, RadioGroupComponent, RichTextEditorComponent, RichTextEditorDirective, RichTextEditorFloatingToolbarComponent, SCROLLABLE_IMPORTS, SELECTION_LIST_MULTIPLE, SELECTION_LIST_TOKEN, SIDEBAR_OVERLAY_CONFIG, SIDEBAR_OVERLAY_TOKEN, SNAP_HYSTERESIS, SOOP_PLAYER_TOKEN, STREAM_CONSENT_TOKEN, STREAM_PLAYER_COMPONENT_TOKEN, STREAM_PLAYER_ERROR_CONTEXT_TOKEN, STREAM_PLAYER_ERROR_TOKEN, STREAM_PLAYER_PARAMS_TOKEN, STREAM_PLAYER_SLOT_TOKEN, STREAM_PLAYER_TOKEN, STREAM_SLOT_PLAYER_ID_TOKEN, STREAM_USER_CONSENT_PROVIDER_TOKEN, STRIKETHROUGH_ICON, SWITCH_IMPORTS, ScrollableActiveChildDirective, ScrollableButtonsDirective, ScrollableComponent, ScrollableDarkenDirective, ScrollableDirective, ScrollableDragDirective, ScrollableErrorCode, ScrollableIgnoreChildDirective, ScrollableLoadingTemplateDirective, ScrollableMasksDirective, ScrollableNavigationDirective, ScrollableSnapDirective, SegmentedButtonComponent, SegmentedButtonGroupComponent, SelectionListControlDirective, SelectionListDirective, SelectionOptionDirective, SoopPlayerComponent, SoopPlayerDirective, SoopPlayerParamsDirective, SoopPlayerSlotComponent, SpinnerComponent, StreamConsentAcceptDirective, StreamConsentComponent, StreamConsentDirective, StreamImports, StreamPipChromeComponent, StreamPlayerErrorComponent, StreamPlayerErrorDirective, StreamPlayerLoadingComponent, StreamPlayerSlotDirective, SwitchComponent, SwitchDirective, TAB_BAR_FITS, TAB_BAR_ORIENTATIONS, TAB_BAR_TOKEN, TAB_BAR_TRIGGER_TOKEN, TAB_BAR_VARIANTS, TAB_ERROR_CODES, TAB_GROUP_TOKEN, TAB_PANEL_TOKEN, TAB_SIZES, TIKTOK_PLAYER_TOKEN, TIMES_ICON, TOGGLETIP_ERROR_CODES, TOGGLETIP_IMPORTS, TOOLTIP_ERROR_CODES, TOOLTIP_IMPORTS, TRIANGLE_EXCLAMATION_ICON, TWITCH_PLAYER_TOKEN, TabBarDirective, TabBarTriggerDirective, TabBarUnderlineDirective, TabComponent, TabGroupComponent, TabGroupDirective, TabImports, TabLabelDirective, TabPanelDirective, TabTriggerDirective, TextButtonComponent, TikTokPlayerComponent, TikTokPlayerDirective, TikTokPlayerParamsDirective, TikTokPlayerSlotComponent, ToggletipCloseDirective, ToggletipComponent, ToggletipDirective, ToggletipTriggerDirective, TooltipComponent, TooltipDirective, TwitchPlayerComponent, TwitchPlayerDirective, TwitchPlayerParamsDirective, TwitchPlayerSlotComponent, VIMEO_PLAYER_TOKEN, VimeoPlayerComponent, VimeoPlayerDirective, VimeoPlayerParamsDirective, VimeoPlayerSlotComponent, WINDOW_CONTROL_BUTTON_KINDS, WINDOW_CONTROL_BUTTON_SIZES, WindowControlButtonComponent, YOUTUBE_PLAYER_SLOT_TOKEN, YOUTUBE_PLAYER_TOKEN, YoutubePlayerComponent, YoutubePlayerDirective, YoutubePlayerParamsDirective, YoutubePlayerSlotComponent, YoutubePlayerSlotDirective, abortFullscreenAnimation, anchoredDialogOverlayStrategy, anchoredOverlayStrategy, autoPlace, bottomSheetOverlayStrategy, buildAnchoredRuntimePositionStrategy, centeredOverlayStrategy, clampPosition, clampResizeRect, cleanupFullscreenAnimation, cleanupFullscreenAnimationStyles, compactLayout, computeGeometry, computeGridHeight, createAutoScroller, createGridAdapter, createNotificationRef, createOverlayHandler, createOverlayHandlerWithQueryParamLifecycle, createOverlayRef, createOverlayStrategyController, createPipChromeAnimations, createPipChromeState, createStreamConfig, createStreamPlayerSlot, deserializeGridLayout, dialogOverlayStrategy, enableDragToDismiss, findCollision, findNextRelevantHtmlElement, findScrollableAncestor, fromGridPosition, fullScreenDialogOverlayStrategy, getClosestOverlay, getOriginCoordinatesAndDimensions, hysteresisRound, injectAnchoredDialogStrategy, injectAnchoredDialogStrategyDefaults, injectBottomSheetStrategy, injectBottomSheetStrategyDefaults, injectDialogStrategy, injectDialogStrategyDefaults, injectFormSupport, injectFullscreenDialogStrategy, injectFullscreenDialogStrategyDefaults, injectGridConfig, injectLeftSheetStrategy, injectLeftSheetStrategyDefaults, injectNotificationManager, injectNotificationManagerConfig, injectOverlayManager, injectOverlayRouter, injectOverlayScrollBlocker, injectPipChromeManager, injectPipManager, injectPipSlotPlaceholderConfig, injectRightSheetStrategy, injectRightSheetStrategyDefaults, injectSidebarOverlay, injectStreamConfig, injectStreamConsentConfig, injectStreamManager, injectStreamPlayerErrorConfig, injectStreamPlayerLoadingConfig, injectStreamScriptLoader, injectStreamUserConsentProvider, injectTopSheetStrategy, injectTopSheetStrategyDefaults, isHtmlElement, isPointerEvent, isTouchEvent, itemsCollide, leftSheetOverlayStrategy, mapLayoutToBreakpoint, mergeOverlayBreakpointConfigs, pixelRectsEqual, positionToPixelRect, positionsEqual, projectDragCell, provideAnchoredDialogStrategy, provideAnchoredDialogStrategyDefaults, provideBottomSheetStrategy, provideBottomSheetStrategyDefaults, provideDialogStrategy, provideDialogStrategyDefaults, provideFormSupport, provideFullscreenDialogStrategy, provideFullscreenDialogStrategyDefaults, provideGridConfig, provideIcons, provideLeftSheetStrategy, provideLeftSheetStrategyDefaults, provideNotificationManager, provideNotificationManagerConfig, provideNotificationManagerInstance, provideOverlay, provideOverlayManager, provideOverlayRouter, provideOverlayRouterConfig, provideOverlayRouterService, provideOverlayScrollBlocker, providePipChromeManager, providePipManager, providePipSlotPlaceholderConfig, provideRightSheetStrategy, provideRightSheetStrategyDefaults, provideSidebarOverlay, provideSidebarOverlayConfig, provideSidebarOverlayService, provideStreamConfig, provideStreamConsentConfig, provideStreamManager, provideStreamPlayerErrorConfig, provideStreamPlayerLoadingConfig, provideTopSheetStrategy, provideTopSheetStrategyDefaults, resizeSpanBounds, resolveBreakpoint, resolveClosestOverlay, resolveCollisions, rightSheetOverlayStrategy, rowsToPixelHeight, serializeGridLayout, snapResizeSpan, spanHeight, spanWidth, startFullscreenEnterAnimation, startFullscreenLeaveAnimation, toGridPosition, topSheetOverlayStrategy, transformingBottomSheetToDialogOverlayStrategy, transformingFullScreenDialogToDialogOverlayStrategy, transformingFullScreenDialogToRightSheetOverlayStrategy };
|
|
5551
|
-
export type { AnchoredDialogOverlayStrategyOptions, AnchoredOverlayStrategyOptions, AnchoredPositionOptions, AutoPlaceOptions, AutoScrollPointer, AutoScroller, ButtonIconAlignment, ButtonSize, CenteredOverlayStrategyOptions, ClampPositionOptions, CompactLayoutOptions, CreateOverlayHandlerConfig, CreateOverlayHandlerInnerConfig, CreateOverlayHandlerWithQueryParamLifecycleConfig, DragToDismissContext, DragToDismissRef, FacebookVideoPlayer, FacebookWindow, FindCollisionOptions, FormFieldAppearance, FormFieldControl, FormFieldControlType, FormFieldDirectiveBase, FormFieldFill, FormFieldLabelMode, FormFieldSize, FullscreenAnimationCancellable, FullscreenAnimationDeps, FullscreenAnimationState, GridAdapter, GridBreakpointConfig, GridBreakpointName, GridComponentRegistration, GridConfig, GridGeometry, GridItemActionsComponent, GridItemConfig, GridItemConstraints, GridItemPosition, GridLayoutEntry, GridSerializedState, HintComponentBase, IconDefinition, InputTextAlignment, LabelDirectiveBase, MapLayoutOptions, MenuAnchorPoint, MenuCloseReason, MenuItemActivationEvent, MenuItemActivationSource, MenuItemVariant, MenuOpenSource, MenuSelectionGroupDirectiveBase, MenuSelectionGroupItem, MenuSelectionItemKind, MenuSurfaceContext, NotificationAction, NotificationConfig, NotificationEntry, NotificationManager, NotificationManagerConfig, NotificationRef, NotificationStackContext, NotificationStatus, OverlayAutoFocusTarget, OverlayBodyDividerType, OverlayBreakpointConfig, OverlayConfig, OverlayConsumerConfig, OverlayDragToDismissConfig, OverlayHandler, OverlayHandlerWithQueryParamLifecycle, OverlayManager, OverlayMode, OverlayRef, OverlayRole, OverlayRoute, OverlayRouter, OverlayRouterConfig, OverlayRouterNavigateConfig, OverlayRouterNavigationDirection, OverlayRouterResolvedPath, OverlayRouterTransitionType, OverlayStrategy, OverlayStrategyBreakpoint, OverlayStrategyContext, OverlayStrategyController, OverlayStrategyControllerMountConfig, OverlaySurfaceContext, PipCellData, PipChromeAnimations, PipChromeRef, PipChromeState, PipManager, PipSlotPlaceholderConfig, PixelRect, ResizeSpanBounds, ResolveClosestOverlayOptions, ResolveCollisionsOptions, RowFloors, ScrollableActiveChildRef, ScrollableButtonPosition, ScrollableDirection, ScrollableIntersectionChange, ScrollableItemSize, ScrollableLoadingTemplatePosition, ScrollableLoadingTemplateRef, ScrollableMaskVariant, ScrollableNavigation, ScrollableNavigationItem, ScrollableScrollMode, ScrollableScrollOrigin, ScrollableScrollState, SelectionListDirectiveBase, SelectionListItem, SerializeOptions, SidebarOverlay, SidebarOverlayConfig, StreamConfig, StreamConsentConfig, StreamManager, StreamPipEntry, StreamPipWindowConfig, StreamPlayer, StreamPlayerCapabilities, StreamPlayerEntry, StreamPlayerErrorConfig, StreamPlayerErrorContext, StreamPlayerId, StreamPlayerLoadingConfig, StreamPlayerParams, StreamPlayerSlotHandle, StreamPlayerSlotOptions, StreamPlayerState, StreamScriptLoader, StreamSlotEntry, TabBarFit, TabBarOrientation, TabBarVariant, TabSize, ToggletipContent, TooltipContent, TwitchEmbed, TwitchEmbedConstructor, TwitchEmbedPlayer, TwitchPlayerParams, TwitchWindow, ViewportTransformData, VimeoDurationChangeEvent, VimeoPlaybackEvent, VimeoPlayer, VimeoPlayerOptions, VimeoWindow, WindowControlButtonKind, WindowControlButtonSize, YtPlayer, YtPlayerConfig, YtPlayerErrorEvent, YtPlayerEvent, YtPlayerStateChangeEvent, YtPlayerVars, YtWindow };
|
|
5592
|
+
export { ARROW_OUT_UP_RIGHT_ICON, ARROW_RIGHT_ICON, BOLD_ICON, BUTTON_ICON_ALIGNMENTS, BUTTON_IMPORTS, BUTTON_SIZES, BUTTON_SPINNER_CONFIG, BUTTON_TYPES, BUTTON_VARIANTS, BrandLoaderComponent, ButtonComponent, ButtonDirective, ButtonStylesDirective, CHECKBOX_IMPORTS, CHEVRON_ICON, CHOICE_FIELD_IMPORTS, CLIPBOARD_CHECK_ICON, CheckboxComponent, CheckboxDirective, CheckboxGroupComponent, CheckboxOptionComponent, ChoiceFieldComponent, DAILYMOTION_PLAYER_TOKEN, DEFAULT_BREAKPOINTS, DEFAULT_ICON_VARIANT, DEFAULT_NOTIFICATION_MANAGER_CONFIG, DEFAULT_PIP_WINDOW_CONFIG, DEFAULT_STREAM_PLAYER_STATE, DailymotionPlayerComponent, DailymotionPlayerDirective, DailymotionPlayerParamsDirective, DailymotionPlayerSlotComponent, DescriptionComponent, FACEBOOK_PLAYER_TOKEN, FLOPPY_DISK_ICON, FOCUS_FRAME_ICON, FORM_FIELD_APPEARANCES, FORM_FIELD_CONTROL_TYPES, FORM_FIELD_ERROR_CODES, FORM_FIELD_FILLS, FORM_FIELD_IMPORTS, FORM_FIELD_LABEL_MODES, FORM_FIELD_SIZES, FORM_FIELD_TOKEN, FabComponent, FacebookPlayerComponent, FacebookPlayerDirective, FacebookPlayerParamsDirective, FacebookPlayerSlotComponent, FocusRingDirective, FormErrorComponent, FormFieldComponent, FormFieldDirective, GRID_2X2_ICON, GRID_ERROR_CODES, GRID_TOKEN, GridComponent, GridDebugComponent, GridDirective, GridDragDirective, GridImports, GridItemComponent, GridItemDefaultActionsComponent, GridItemDirective, GridItemRef, GridItemToolbarComponent, GridResizeDirective, HEADING_1_ICON, HEADING_2_ICON, HEADING_3_ICON, HintComponent, ICONS_TOKEN, ICON_DIRECTIVE_TOKEN, ICON_ERROR_CODES, ICON_IMPORTS, INPUT_IMPORTS, INPUT_TEXT_ALIGNMENTS, INPUT_TYPES, ITALIC_ICON, IconButtonComponent, IconDirective, InputComponent, InputDirective, InputPrefixDirective, InputSuffixDirective, KICK_PLAYER_TOKEN, KickPlayerComponent, KickPlayerDirective, KickPlayerParamsDirective, KickPlayerSlotComponent, LINK_ICON, LIST_BULLETED_ICON, LIST_NUMBERED_ICON, LOCK_ICON, LabelDirective, MENU_ERROR_CODES, MENU_IMPORTS, MENU_ITEM_VARIANTS, MENU_SELECTION_GROUP_MULTIPLE, MENU_SELECTION_GROUP_TOKEN, MENU_SELECTION_ITEM_KIND, MenuCheckboxGroupComponent, MenuCheckboxItemComponent, MenuComponent, MenuContextTriggerDirective, MenuDirective, MenuGroupLabelComponent, MenuItemComponent, MenuItemDirective, MenuItemShortcutComponent, MenuPanelDirective, MenuRadioGroupComponent, MenuRadioItemComponent, MenuSearchDirective, MenuSelectionGroupDirective, MenuSelectionItemDirective, MenuSeparatorComponent, MenuSurfaceDirective, MenuTriggerDirective, NAV_TABS_TOKEN, NOTIFICATION_ERROR_CODES, NOTIFICATION_IMPORTS, NOTIFICATION_STACK_CONTEXT_TOKEN, NOTIFICATION_STATUS, NavTabImports, NavTabLinkComponent, NavTabLinkDirective, NavTabsComponent, NavTabsDirective, NavTabsOutletComponent, NavTabsOutletDirective, NotificationActionDirective, NotificationComponent, NotificationDirective, NotificationDismissDirective, NotificationItemDirective, NotificationStackDirective, OVERLAY_BACK_OR_CLOSE_TOKEN, OVERLAY_BODY_TOKEN, OVERLAY_CONFIG_CLASS_KEYS, OVERLAY_CONTENT_IMPORTS, OVERLAY_ERROR_CODES, OVERLAY_FOOTER_TOKEN, OVERLAY_HEADER_TEMPLATE_TOKEN, OVERLAY_HEADER_TOKEN, OVERLAY_IMPORTS, OVERLAY_MAIN_TOKEN, OVERLAY_QUERY_PARAM_INPUT_NAME, OVERLAY_REF, OVERLAY_ROUTER_CONFIG_TOKEN, OVERLAY_ROUTER_LINK_TOKEN, OVERLAY_ROUTER_OUTLET_DISABLED_TEMPLATE_TOKEN, OVERLAY_ROUTER_OUTLET_TOKEN, OVERLAY_ROUTER_TOKEN, OVERLAY_SHARED_ROUTE_TEMPLATE_TOKEN, OverlayAnchorDirective, OverlayBackOrCloseDirective, OverlayBodyComponent, OverlayCloseDirective, OverlayContainerComponent, OverlayDirective, OverlayFooterDirective, OverlayHandlerLinkDirective, OverlayHeaderDirective, OverlayHeaderTemplateDirective, OverlayMainDirective, OverlayOriginCloneComponent, OverlayRouteHeaderTemplateOutletComponent, OverlayRouterLinkDirective, OverlayRouterOutletComponent, OverlayRouterOutletDisabledTemplateDirective, OverlaySharedRouteTemplateDirective, OverlaySharedRouteTemplateOutletComponent, OverlaySidebarComponent, OverlaySidebarPageComponent, OverlaySurfaceDirective, OverlayTitleDirective, OverlayTriggerDirective, PENCIL_ICON, PIP_CHROME_REF_TOKEN, PIP_ENTRY_TOKEN, PIP_WINDOW_ASPECT_RATIO_TOKEN, PLUS_ICON, PipBackDirective, PipBringBackDirective, PipCellDirective, PipCloseDirective, PipCollapseOverlayDirective, PipGridToggleDirective, PipPlayerComponent, PipSlotPlaceholderComponent, PipStageDirective, PipTitleBarDirective, PipTitleBarTemplateDirective, PipWindowComponent, PipWindowParamsDirective, ProgressBarComponent, RICH_TEXT_EDITOR_IMPORTS, RadioComponent, RadioGroupComponent, RichTextEditorComponent, RichTextEditorDirective, RichTextEditorFloatingToolbarComponent, SCROLLABLE_IMPORTS, SELECTION_LIST_MULTIPLE, SELECTION_LIST_TOKEN, SIDEBAR_OVERLAY_CONFIG, SIDEBAR_OVERLAY_TOKEN, SNAP_HYSTERESIS, SOOP_PLAYER_TOKEN, STREAM_CONSENT_TOKEN, STREAM_PLAYER_COMPONENT_TOKEN, STREAM_PLAYER_ERROR_CONTEXT_TOKEN, STREAM_PLAYER_ERROR_TOKEN, STREAM_PLAYER_PARAMS_TOKEN, STREAM_PLAYER_SLOT_TOKEN, STREAM_PLAYER_TOKEN, STREAM_SLOT_PLAYER_ID_TOKEN, STREAM_USER_CONSENT_PROVIDER_TOKEN, STRIKETHROUGH_ICON, SWITCH_IMPORTS, ScrollableActiveChildDirective, ScrollableButtonsDirective, ScrollableComponent, ScrollableDarkenDirective, ScrollableDirective, ScrollableDragDirective, ScrollableErrorCode, ScrollableIgnoreChildDirective, ScrollableLoadingTemplateDirective, ScrollableMasksDirective, ScrollableNavigationDirective, ScrollableSnapDirective, SegmentedButtonComponent, SegmentedButtonGroupComponent, SelectionListControlDirective, SelectionListDirective, SelectionOptionDirective, SoopPlayerComponent, SoopPlayerDirective, SoopPlayerParamsDirective, SoopPlayerSlotComponent, SpinnerComponent, StreamConsentAcceptDirective, StreamConsentComponent, StreamConsentDirective, StreamImports, StreamPipChromeComponent, StreamPlayerErrorComponent, StreamPlayerErrorDirective, StreamPlayerLoadingComponent, StreamPlayerSlotDirective, SwitchComponent, SwitchDirective, TAB_BAR_FITS, TAB_BAR_ORIENTATIONS, TAB_BAR_TOKEN, TAB_BAR_TRIGGER_TOKEN, TAB_BAR_VARIANTS, TAB_ERROR_CODES, TAB_GROUP_TOKEN, TAB_PANEL_TOKEN, TAB_SIZES, TIKTOK_PLAYER_TOKEN, TIMES_ICON, TOGGLETIP_ERROR_CODES, TOGGLETIP_IMPORTS, TOOLTIP_ERROR_CODES, TOOLTIP_IMPORTS, TRIANGLE_EXCLAMATION_ICON, TWITCH_PLAYER_TOKEN, TabBarDirective, TabBarTriggerDirective, TabBarUnderlineDirective, TabComponent, TabGroupComponent, TabGroupDirective, TabImports, TabLabelDirective, TabPanelDirective, TabTriggerDirective, TextButtonComponent, TikTokPlayerComponent, TikTokPlayerDirective, TikTokPlayerParamsDirective, TikTokPlayerSlotComponent, ToggletipCloseDirective, ToggletipComponent, ToggletipDirective, ToggletipTriggerDirective, TooltipComponent, TooltipDirective, TwitchPlayerComponent, TwitchPlayerDirective, TwitchPlayerParamsDirective, TwitchPlayerSlotComponent, VIMEO_PLAYER_TOKEN, VimeoPlayerComponent, VimeoPlayerDirective, VimeoPlayerParamsDirective, VimeoPlayerSlotComponent, WINDOW_CONTROL_BUTTON_KINDS, WINDOW_CONTROL_BUTTON_SIZES, WindowControlButtonComponent, YOUTUBE_PLAYER_SLOT_TOKEN, YOUTUBE_PLAYER_TOKEN, YoutubePlayerComponent, YoutubePlayerDirective, YoutubePlayerParamsDirective, YoutubePlayerSlotComponent, YoutubePlayerSlotDirective, abortFullscreenAnimation, anchoredDialogOverlayStrategy, anchoredOverlayStrategy, autoPlace, bottomSheetOverlayStrategy, buildAnchoredRuntimePositionStrategy, centeredOverlayStrategy, clampPosition, clampResizeRect, cleanupFullscreenAnimation, cleanupFullscreenAnimationStyles, compactLayout, computeGeometry, computeGridHeight, createAutoScroller, createGridAdapter, createNotificationRef, createOverlayHandler, createOverlayHandlerWithQueryParamLifecycle, createOverlayRef, createOverlayStrategyController, createPipChromeAnimations, createPipChromeState, createStreamConfig, createStreamPlayerSlot, deserializeGridLayout, dialogOverlayStrategy, enableDragToDismiss, findCollision, findNextRelevantHtmlElement, findScrollableAncestor, fromGridPosition, fullScreenDialogOverlayStrategy, getClosestOverlay, getOriginCoordinatesAndDimensions, hysteresisRound, iconRegistryKey, injectAnchoredDialogStrategy, injectAnchoredDialogStrategyDefaults, injectBottomSheetStrategy, injectBottomSheetStrategyDefaults, injectDialogStrategy, injectDialogStrategyDefaults, injectFormSupport, injectFullscreenDialogStrategy, injectFullscreenDialogStrategyDefaults, injectGridConfig, injectLeftSheetStrategy, injectLeftSheetStrategyDefaults, injectNotificationManager, injectNotificationManagerConfig, injectOverlayManager, injectOverlayRouter, injectOverlayScrollBlocker, injectPipChromeManager, injectPipManager, injectPipSlotPlaceholderConfig, injectRightSheetStrategy, injectRightSheetStrategyDefaults, injectSidebarOverlay, injectStreamConfig, injectStreamConsentConfig, injectStreamManager, injectStreamPlayerErrorConfig, injectStreamPlayerLoadingConfig, injectStreamScriptLoader, injectStreamUserConsentProvider, injectTopSheetStrategy, injectTopSheetStrategyDefaults, isHtmlElement, isPointerEvent, isTouchEvent, itemsCollide, leftSheetOverlayStrategy, mapLayoutToBreakpoint, mergeOverlayBreakpointConfigs, pixelRectsEqual, positionToPixelRect, positionsEqual, projectDragCell, provideAnchoredDialogStrategy, provideAnchoredDialogStrategyDefaults, provideBottomSheetStrategy, provideBottomSheetStrategyDefaults, provideDialogStrategy, provideDialogStrategyDefaults, provideFormSupport, provideFullscreenDialogStrategy, provideFullscreenDialogStrategyDefaults, provideGridConfig, provideIcons, provideLeftSheetStrategy, provideLeftSheetStrategyDefaults, provideNotificationManager, provideNotificationManagerConfig, provideNotificationManagerInstance, provideOverlay, provideOverlayManager, provideOverlayRouter, provideOverlayRouterConfig, provideOverlayRouterService, provideOverlayScrollBlocker, providePipChromeManager, providePipManager, providePipSlotPlaceholderConfig, provideRightSheetStrategy, provideRightSheetStrategyDefaults, provideSidebarOverlay, provideSidebarOverlayConfig, provideSidebarOverlayService, provideStreamConfig, provideStreamConsentConfig, provideStreamManager, provideStreamPlayerErrorConfig, provideStreamPlayerLoadingConfig, provideTopSheetStrategy, provideTopSheetStrategyDefaults, resizeSpanBounds, resolveBreakpoint, resolveClosestOverlay, resolveCollisions, rightSheetOverlayStrategy, rowsToPixelHeight, serializeGridLayout, snapResizeSpan, spanHeight, spanWidth, startFullscreenEnterAnimation, startFullscreenLeaveAnimation, toGridPosition, topSheetOverlayStrategy, transformingBottomSheetToDialogOverlayStrategy, transformingFullScreenDialogToDialogOverlayStrategy, transformingFullScreenDialogToRightSheetOverlayStrategy };
|
|
5593
|
+
export type { AnchoredDialogOverlayStrategyOptions, AnchoredOverlayStrategyOptions, AnchoredPositionOptions, AutoPlaceOptions, AutoScrollPointer, AutoScroller, ButtonIconAlignment, ButtonSize, CenteredOverlayStrategyOptions, ClampPositionOptions, CompactLayoutOptions, CreateOverlayHandlerConfig, CreateOverlayHandlerInnerConfig, CreateOverlayHandlerWithQueryParamLifecycleConfig, DragToDismissContext, DragToDismissRef, EthleteIconNameRegistry, EthleteIconVariantRegistry, FacebookVideoPlayer, FacebookWindow, FindCollisionOptions, FormFieldAppearance, FormFieldControl, FormFieldControlType, FormFieldDirectiveBase, FormFieldFill, FormFieldLabelMode, FormFieldSize, FullscreenAnimationCancellable, FullscreenAnimationDeps, FullscreenAnimationState, GridAdapter, GridBreakpointConfig, GridBreakpointName, GridComponentRegistration, GridConfig, GridGeometry, GridItemActionsComponent, GridItemConfig, GridItemConstraints, GridItemPosition, GridLayoutEntry, GridSerializedState, HintComponentBase, IconDefinition, InputTextAlignment, LabelDirectiveBase, MapLayoutOptions, MenuAnchorPoint, MenuCloseReason, MenuItemActivationEvent, MenuItemActivationSource, MenuItemVariant, MenuOpenSource, MenuSelectionGroupDirectiveBase, MenuSelectionGroupItem, MenuSelectionItemKind, MenuSurfaceContext, NotificationAction, NotificationConfig, NotificationEntry, NotificationManager, NotificationManagerConfig, NotificationRef, NotificationStackContext, NotificationStatus, OverlayAutoFocusTarget, OverlayBodyDividerType, OverlayBreakpointConfig, OverlayConfig, OverlayConsumerConfig, OverlayDragToDismissConfig, OverlayHandler, OverlayHandlerWithQueryParamLifecycle, OverlayManager, OverlayMode, OverlayRef, OverlayRole, OverlayRoute, OverlayRouter, OverlayRouterConfig, OverlayRouterNavigateConfig, OverlayRouterNavigationDirection, OverlayRouterResolvedPath, OverlayRouterTransitionType, OverlayStrategy, OverlayStrategyBreakpoint, OverlayStrategyContext, OverlayStrategyController, OverlayStrategyControllerMountConfig, OverlaySurfaceContext, PipCellData, PipChromeAnimations, PipChromeRef, PipChromeState, PipManager, PipSlotPlaceholderConfig, PixelRect, RegisteredIconName, RegisteredIconVariant, ResizeSpanBounds, ResolveClosestOverlayOptions, ResolveCollisionsOptions, RowFloors, ScrollableActiveChildRef, ScrollableButtonPosition, ScrollableDirection, ScrollableIntersectionChange, ScrollableItemSize, ScrollableLoadingTemplatePosition, ScrollableLoadingTemplateRef, ScrollableMaskVariant, ScrollableNavigation, ScrollableNavigationItem, ScrollableScrollMode, ScrollableScrollOrigin, ScrollableScrollState, SelectionListDirectiveBase, SelectionListItem, SerializeOptions, SidebarOverlay, SidebarOverlayConfig, StreamConfig, StreamConsentConfig, StreamManager, StreamPipEntry, StreamPipWindowConfig, StreamPlayer, StreamPlayerCapabilities, StreamPlayerEntry, StreamPlayerErrorConfig, StreamPlayerErrorContext, StreamPlayerId, StreamPlayerLoadingConfig, StreamPlayerParams, StreamPlayerSlotHandle, StreamPlayerSlotOptions, StreamPlayerState, StreamScriptLoader, StreamSlotEntry, TabBarFit, TabBarOrientation, TabBarVariant, TabSize, ToggletipContent, TooltipContent, TwitchEmbed, TwitchEmbedConstructor, TwitchEmbedPlayer, TwitchPlayerParams, TwitchWindow, ViewportTransformData, VimeoDurationChangeEvent, VimeoPlaybackEvent, VimeoPlayer, VimeoPlayerOptions, VimeoWindow, WindowControlButtonKind, WindowControlButtonSize, YtPlayer, YtPlayerConfig, YtPlayerErrorEvent, YtPlayerEvent, YtPlayerStateChangeEvent, YtPlayerVars, YtWindow };
|