@fluid-topics/ft-wc-utils 1.0.59 → 1.0.60
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/build/FtCssVariables.d.ts +1 -20
- package/build/FtCssVariables.js +1 -50
- package/build/designSystemVariables.d.ts +62 -62
- package/build/designSystemVariables.js +62 -62
- package/build/globals.min.js +23 -23
- package/package.json +3 -2
|
@@ -1,20 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export type FtCssVariableCategory = "COLOR" | "NUMBER" | "SIZE" | "UNKNOWN" | "POSITION" | "DISPLAY" | "BORDER-STYLE";
|
|
3
|
-
export declare class FtCssVariableFactory {
|
|
4
|
-
static create(name: string, category: FtCssVariableCategory, defaultValue: string): FtCssVariable;
|
|
5
|
-
static extend(name: string, fallbackVariable: FtCssVariable, defaultValue?: string): FtCssVariable;
|
|
6
|
-
static external(externalVariable: FtCssVariable, context: string): FtCssVariable;
|
|
7
|
-
}
|
|
8
|
-
export type FtCssVariable = CSSResult & {
|
|
9
|
-
name: string;
|
|
10
|
-
category: FtCssVariableCategory;
|
|
11
|
-
fallbackVariable?: FtCssVariable;
|
|
12
|
-
defaultValue?: string;
|
|
13
|
-
context?: string;
|
|
14
|
-
breadcrumb(): Array<string>;
|
|
15
|
-
defaultCssValue(defaultValue?: string): CSSResult;
|
|
16
|
-
get(defaultValue?: string): CSSResult;
|
|
17
|
-
lastResortDefaultValue(): string | undefined;
|
|
18
|
-
};
|
|
19
|
-
export type FtCssVariables = Record<string, FtCssVariable>;
|
|
20
|
-
export declare function setVariable(variable: FtCssVariable, value: string | CSSResult | FtCssVariable): CSSResult;
|
|
1
|
+
export * from "@fluid-topics/design-system-variables";
|
package/build/FtCssVariables.js
CHANGED
|
@@ -1,50 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export class FtCssVariableFactory {
|
|
3
|
-
static create(name, category, defaultValue) {
|
|
4
|
-
let defaultCssValue = (contextualDefaultValue) => unsafeCSS(contextualDefaultValue !== null && contextualDefaultValue !== void 0 ? contextualDefaultValue : defaultValue);
|
|
5
|
-
let cssResult = css `var(${unsafeCSS(name)}, ${defaultCssValue(defaultValue)})`;
|
|
6
|
-
cssResult.name = name;
|
|
7
|
-
cssResult.category = category;
|
|
8
|
-
cssResult.defaultValue = defaultValue;
|
|
9
|
-
cssResult.defaultCssValue = defaultCssValue;
|
|
10
|
-
cssResult.get = (defaultValue) => css `var(${unsafeCSS(name)}, ${defaultCssValue(defaultValue)})`;
|
|
11
|
-
cssResult.breadcrumb = () => [];
|
|
12
|
-
cssResult.lastResortDefaultValue = () => defaultValue;
|
|
13
|
-
return cssResult;
|
|
14
|
-
}
|
|
15
|
-
static extend(name, fallbackVariable, defaultValue) {
|
|
16
|
-
let defaultCssValue = (contextualDefaultValue) => fallbackVariable.get(contextualDefaultValue !== null && contextualDefaultValue !== void 0 ? contextualDefaultValue : defaultValue);
|
|
17
|
-
let cssResult = css `var(${unsafeCSS(name)}, ${defaultCssValue(defaultValue)})`;
|
|
18
|
-
cssResult.name = name;
|
|
19
|
-
cssResult.category = fallbackVariable.category;
|
|
20
|
-
cssResult.fallbackVariable = fallbackVariable;
|
|
21
|
-
cssResult.defaultValue = defaultValue;
|
|
22
|
-
cssResult.defaultCssValue = defaultCssValue;
|
|
23
|
-
cssResult.get = (defaultValue) => css `var(${unsafeCSS(name)}, ${defaultCssValue(defaultValue)})`;
|
|
24
|
-
cssResult.breadcrumb = () => [fallbackVariable.name, ...fallbackVariable.breadcrumb()];
|
|
25
|
-
cssResult.lastResortDefaultValue = () => defaultValue;
|
|
26
|
-
return cssResult;
|
|
27
|
-
}
|
|
28
|
-
static external(externalVariable, context) {
|
|
29
|
-
let defaultCssValue = (contextualDefaultValue) => externalVariable.fallbackVariable
|
|
30
|
-
? externalVariable.fallbackVariable.get(contextualDefaultValue !== null && contextualDefaultValue !== void 0 ? contextualDefaultValue : externalVariable.defaultValue)
|
|
31
|
-
: unsafeCSS(contextualDefaultValue !== null && contextualDefaultValue !== void 0 ? contextualDefaultValue : externalVariable.defaultValue);
|
|
32
|
-
let cssResult = css `var(${unsafeCSS(externalVariable.name)}, ${defaultCssValue(externalVariable.defaultValue)})`;
|
|
33
|
-
cssResult.name = externalVariable.name;
|
|
34
|
-
cssResult.category = externalVariable.category;
|
|
35
|
-
cssResult.fallbackVariable = externalVariable.fallbackVariable;
|
|
36
|
-
cssResult.defaultValue = externalVariable.defaultValue;
|
|
37
|
-
cssResult.context = context;
|
|
38
|
-
cssResult.defaultCssValue = defaultCssValue;
|
|
39
|
-
cssResult.get = (defaultValue) => css `var(${unsafeCSS(externalVariable.name)}, ${defaultCssValue(defaultValue)})`;
|
|
40
|
-
cssResult.breadcrumb = () => externalVariable.fallbackVariable ? [
|
|
41
|
-
externalVariable.fallbackVariable.name,
|
|
42
|
-
...externalVariable.fallbackVariable.breadcrumb()
|
|
43
|
-
] : [];
|
|
44
|
-
cssResult.lastResortDefaultValue = () => { var _a, _b; return (_a = externalVariable.defaultValue) !== null && _a !== void 0 ? _a : (_b = externalVariable.fallbackVariable) === null || _b === void 0 ? void 0 : _b.lastResortDefaultValue(); };
|
|
45
|
-
return cssResult;
|
|
46
|
-
}
|
|
47
|
-
}
|
|
48
|
-
export function setVariable(variable, value) {
|
|
49
|
-
return unsafeCSS(`${variable.name}: ${value}`);
|
|
50
|
-
}
|
|
1
|
+
export * from "@fluid-topics/design-system-variables";
|
|
@@ -1,64 +1,64 @@
|
|
|
1
1
|
export declare const designSystemVariables: {
|
|
2
|
-
colorPrimary: import("
|
|
3
|
-
colorPrimaryVariant: import("
|
|
4
|
-
colorSecondary: import("
|
|
5
|
-
colorSecondaryVariant: import("
|
|
6
|
-
colorSurface: import("
|
|
7
|
-
colorContent: import("
|
|
8
|
-
colorError: import("
|
|
9
|
-
colorOutline: import("
|
|
10
|
-
colorOpacityHigh: import("
|
|
11
|
-
colorOpacityMedium: import("
|
|
12
|
-
colorOpacityDisabled: import("
|
|
13
|
-
colorOnPrimary: import("
|
|
14
|
-
colorOnPrimaryHigh: import("
|
|
15
|
-
colorOnPrimaryMedium: import("
|
|
16
|
-
colorOnPrimaryDisabled: import("
|
|
17
|
-
colorOnSecondary: import("
|
|
18
|
-
colorOnSecondaryHigh: import("
|
|
19
|
-
colorOnSecondaryMedium: import("
|
|
20
|
-
colorOnSecondaryDisabled: import("
|
|
21
|
-
colorOnSurface: import("
|
|
22
|
-
colorOnSurfaceHigh: import("
|
|
23
|
-
colorOnSurfaceMedium: import("
|
|
24
|
-
colorOnSurfaceDisabled: import("
|
|
25
|
-
opacityContentOnSurfaceDisabled: import("
|
|
26
|
-
opacityContentOnSurfaceEnable: import("
|
|
27
|
-
opacityContentOnSurfaceHover: import("
|
|
28
|
-
opacityContentOnSurfaceFocused: import("
|
|
29
|
-
opacityContentOnSurfacePressed: import("
|
|
30
|
-
opacityContentOnSurfaceSelected: import("
|
|
31
|
-
opacityContentOnSurfaceDragged: import("
|
|
32
|
-
opacityPrimaryOnSurfaceDisabled: import("
|
|
33
|
-
opacityPrimaryOnSurfaceEnable: import("
|
|
34
|
-
opacityPrimaryOnSurfaceHover: import("
|
|
35
|
-
opacityPrimaryOnSurfaceFocused: import("
|
|
36
|
-
opacityPrimaryOnSurfacePressed: import("
|
|
37
|
-
opacityPrimaryOnSurfaceSelected: import("
|
|
38
|
-
opacityPrimaryOnSurfaceDragged: import("
|
|
39
|
-
opacitySurfaceOnPrimaryDisabled: import("
|
|
40
|
-
opacitySurfaceOnPrimaryEnable: import("
|
|
41
|
-
opacitySurfaceOnPrimaryHover: import("
|
|
42
|
-
opacitySurfaceOnPrimaryFocused: import("
|
|
43
|
-
opacitySurfaceOnPrimaryPressed: import("
|
|
44
|
-
opacitySurfaceOnPrimarySelected: import("
|
|
45
|
-
opacitySurfaceOnPrimaryDragged: import("
|
|
46
|
-
elevation00: import("
|
|
47
|
-
elevation01: import("
|
|
48
|
-
elevation02: import("
|
|
49
|
-
elevation03: import("
|
|
50
|
-
elevation04: import("
|
|
51
|
-
elevation06: import("
|
|
52
|
-
elevation08: import("
|
|
53
|
-
elevation12: import("
|
|
54
|
-
elevation16: import("
|
|
55
|
-
elevation24: import("
|
|
56
|
-
borderRadiusS: import("
|
|
57
|
-
borderRadiusM: import("
|
|
58
|
-
borderRadiusL: import("
|
|
59
|
-
borderRadiusXL: import("
|
|
60
|
-
titleFont: import("
|
|
61
|
-
contentFont: import("
|
|
62
|
-
transitionDuration: import("
|
|
63
|
-
transitionTimingFunction: import("
|
|
2
|
+
colorPrimary: import("@fluid-topics/design-system-variables/build/FtCssVariables").FtCssVariable;
|
|
3
|
+
colorPrimaryVariant: import("@fluid-topics/design-system-variables/build/FtCssVariables").FtCssVariable;
|
|
4
|
+
colorSecondary: import("@fluid-topics/design-system-variables/build/FtCssVariables").FtCssVariable;
|
|
5
|
+
colorSecondaryVariant: import("@fluid-topics/design-system-variables/build/FtCssVariables").FtCssVariable;
|
|
6
|
+
colorSurface: import("@fluid-topics/design-system-variables/build/FtCssVariables").FtCssVariable;
|
|
7
|
+
colorContent: import("@fluid-topics/design-system-variables/build/FtCssVariables").FtCssVariable;
|
|
8
|
+
colorError: import("@fluid-topics/design-system-variables/build/FtCssVariables").FtCssVariable;
|
|
9
|
+
colorOutline: import("@fluid-topics/design-system-variables/build/FtCssVariables").FtCssVariable;
|
|
10
|
+
colorOpacityHigh: import("@fluid-topics/design-system-variables/build/FtCssVariables").FtCssVariable;
|
|
11
|
+
colorOpacityMedium: import("@fluid-topics/design-system-variables/build/FtCssVariables").FtCssVariable;
|
|
12
|
+
colorOpacityDisabled: import("@fluid-topics/design-system-variables/build/FtCssVariables").FtCssVariable;
|
|
13
|
+
colorOnPrimary: import("@fluid-topics/design-system-variables/build/FtCssVariables").FtCssVariable;
|
|
14
|
+
colorOnPrimaryHigh: import("@fluid-topics/design-system-variables/build/FtCssVariables").FtCssVariable;
|
|
15
|
+
colorOnPrimaryMedium: import("@fluid-topics/design-system-variables/build/FtCssVariables").FtCssVariable;
|
|
16
|
+
colorOnPrimaryDisabled: import("@fluid-topics/design-system-variables/build/FtCssVariables").FtCssVariable;
|
|
17
|
+
colorOnSecondary: import("@fluid-topics/design-system-variables/build/FtCssVariables").FtCssVariable;
|
|
18
|
+
colorOnSecondaryHigh: import("@fluid-topics/design-system-variables/build/FtCssVariables").FtCssVariable;
|
|
19
|
+
colorOnSecondaryMedium: import("@fluid-topics/design-system-variables/build/FtCssVariables").FtCssVariable;
|
|
20
|
+
colorOnSecondaryDisabled: import("@fluid-topics/design-system-variables/build/FtCssVariables").FtCssVariable;
|
|
21
|
+
colorOnSurface: import("@fluid-topics/design-system-variables/build/FtCssVariables").FtCssVariable;
|
|
22
|
+
colorOnSurfaceHigh: import("@fluid-topics/design-system-variables/build/FtCssVariables").FtCssVariable;
|
|
23
|
+
colorOnSurfaceMedium: import("@fluid-topics/design-system-variables/build/FtCssVariables").FtCssVariable;
|
|
24
|
+
colorOnSurfaceDisabled: import("@fluid-topics/design-system-variables/build/FtCssVariables").FtCssVariable;
|
|
25
|
+
opacityContentOnSurfaceDisabled: import("@fluid-topics/design-system-variables/build/FtCssVariables").FtCssVariable;
|
|
26
|
+
opacityContentOnSurfaceEnable: import("@fluid-topics/design-system-variables/build/FtCssVariables").FtCssVariable;
|
|
27
|
+
opacityContentOnSurfaceHover: import("@fluid-topics/design-system-variables/build/FtCssVariables").FtCssVariable;
|
|
28
|
+
opacityContentOnSurfaceFocused: import("@fluid-topics/design-system-variables/build/FtCssVariables").FtCssVariable;
|
|
29
|
+
opacityContentOnSurfacePressed: import("@fluid-topics/design-system-variables/build/FtCssVariables").FtCssVariable;
|
|
30
|
+
opacityContentOnSurfaceSelected: import("@fluid-topics/design-system-variables/build/FtCssVariables").FtCssVariable;
|
|
31
|
+
opacityContentOnSurfaceDragged: import("@fluid-topics/design-system-variables/build/FtCssVariables").FtCssVariable;
|
|
32
|
+
opacityPrimaryOnSurfaceDisabled: import("@fluid-topics/design-system-variables/build/FtCssVariables").FtCssVariable;
|
|
33
|
+
opacityPrimaryOnSurfaceEnable: import("@fluid-topics/design-system-variables/build/FtCssVariables").FtCssVariable;
|
|
34
|
+
opacityPrimaryOnSurfaceHover: import("@fluid-topics/design-system-variables/build/FtCssVariables").FtCssVariable;
|
|
35
|
+
opacityPrimaryOnSurfaceFocused: import("@fluid-topics/design-system-variables/build/FtCssVariables").FtCssVariable;
|
|
36
|
+
opacityPrimaryOnSurfacePressed: import("@fluid-topics/design-system-variables/build/FtCssVariables").FtCssVariable;
|
|
37
|
+
opacityPrimaryOnSurfaceSelected: import("@fluid-topics/design-system-variables/build/FtCssVariables").FtCssVariable;
|
|
38
|
+
opacityPrimaryOnSurfaceDragged: import("@fluid-topics/design-system-variables/build/FtCssVariables").FtCssVariable;
|
|
39
|
+
opacitySurfaceOnPrimaryDisabled: import("@fluid-topics/design-system-variables/build/FtCssVariables").FtCssVariable;
|
|
40
|
+
opacitySurfaceOnPrimaryEnable: import("@fluid-topics/design-system-variables/build/FtCssVariables").FtCssVariable;
|
|
41
|
+
opacitySurfaceOnPrimaryHover: import("@fluid-topics/design-system-variables/build/FtCssVariables").FtCssVariable;
|
|
42
|
+
opacitySurfaceOnPrimaryFocused: import("@fluid-topics/design-system-variables/build/FtCssVariables").FtCssVariable;
|
|
43
|
+
opacitySurfaceOnPrimaryPressed: import("@fluid-topics/design-system-variables/build/FtCssVariables").FtCssVariable;
|
|
44
|
+
opacitySurfaceOnPrimarySelected: import("@fluid-topics/design-system-variables/build/FtCssVariables").FtCssVariable;
|
|
45
|
+
opacitySurfaceOnPrimaryDragged: import("@fluid-topics/design-system-variables/build/FtCssVariables").FtCssVariable;
|
|
46
|
+
elevation00: import("@fluid-topics/design-system-variables/build/FtCssVariables").FtCssVariable;
|
|
47
|
+
elevation01: import("@fluid-topics/design-system-variables/build/FtCssVariables").FtCssVariable;
|
|
48
|
+
elevation02: import("@fluid-topics/design-system-variables/build/FtCssVariables").FtCssVariable;
|
|
49
|
+
elevation03: import("@fluid-topics/design-system-variables/build/FtCssVariables").FtCssVariable;
|
|
50
|
+
elevation04: import("@fluid-topics/design-system-variables/build/FtCssVariables").FtCssVariable;
|
|
51
|
+
elevation06: import("@fluid-topics/design-system-variables/build/FtCssVariables").FtCssVariable;
|
|
52
|
+
elevation08: import("@fluid-topics/design-system-variables/build/FtCssVariables").FtCssVariable;
|
|
53
|
+
elevation12: import("@fluid-topics/design-system-variables/build/FtCssVariables").FtCssVariable;
|
|
54
|
+
elevation16: import("@fluid-topics/design-system-variables/build/FtCssVariables").FtCssVariable;
|
|
55
|
+
elevation24: import("@fluid-topics/design-system-variables/build/FtCssVariables").FtCssVariable;
|
|
56
|
+
borderRadiusS: import("@fluid-topics/design-system-variables/build/FtCssVariables").FtCssVariable;
|
|
57
|
+
borderRadiusM: import("@fluid-topics/design-system-variables/build/FtCssVariables").FtCssVariable;
|
|
58
|
+
borderRadiusL: import("@fluid-topics/design-system-variables/build/FtCssVariables").FtCssVariable;
|
|
59
|
+
borderRadiusXL: import("@fluid-topics/design-system-variables/build/FtCssVariables").FtCssVariable;
|
|
60
|
+
titleFont: import("@fluid-topics/design-system-variables/build/FtCssVariables").FtCssVariable;
|
|
61
|
+
contentFont: import("@fluid-topics/design-system-variables/build/FtCssVariables").FtCssVariable;
|
|
62
|
+
transitionDuration: import("@fluid-topics/design-system-variables/build/FtCssVariables").FtCssVariable;
|
|
63
|
+
transitionTimingFunction: import("@fluid-topics/design-system-variables/build/FtCssVariables").FtCssVariable;
|
|
64
64
|
};
|
|
@@ -1,65 +1,65 @@
|
|
|
1
1
|
import { FtCssVariableFactory } from "./FtCssVariables";
|
|
2
2
|
export const designSystemVariables = {
|
|
3
|
-
colorPrimary: FtCssVariableFactory.create("--ft-color-primary", "COLOR", "#2196F3"),
|
|
4
|
-
colorPrimaryVariant: FtCssVariableFactory.create("--ft-color-primary-variant", "COLOR", "#1976D2"),
|
|
5
|
-
colorSecondary: FtCssVariableFactory.create("--ft-color-secondary", "COLOR", "#FFCC80"),
|
|
6
|
-
colorSecondaryVariant: FtCssVariableFactory.create("--ft-color-secondary-variant", "COLOR", "#F57C00"),
|
|
7
|
-
colorSurface: FtCssVariableFactory.create("--ft-color-surface", "COLOR", "#FFFFFF"),
|
|
8
|
-
colorContent: FtCssVariableFactory.create("--ft-color-content", "COLOR", "rgba(0, 0, 0, 0.87)"),
|
|
9
|
-
colorError: FtCssVariableFactory.create("--ft-color-error", "COLOR", "#B00020"),
|
|
10
|
-
colorOutline: FtCssVariableFactory.create("--ft-color-outline", "COLOR", "rgba(0, 0, 0, 0.14)"),
|
|
11
|
-
colorOpacityHigh: FtCssVariableFactory.create("--ft-color-opacity-high", "NUMBER", "1"),
|
|
12
|
-
colorOpacityMedium: FtCssVariableFactory.create("--ft-color-opacity-medium", "NUMBER", "0.74"),
|
|
13
|
-
colorOpacityDisabled: FtCssVariableFactory.create("--ft-color-opacity-disabled", "NUMBER", "0.38"),
|
|
14
|
-
colorOnPrimary: FtCssVariableFactory.create("--ft-color-on-primary", "COLOR", "#FFFFFF"),
|
|
15
|
-
colorOnPrimaryHigh: FtCssVariableFactory.create("--ft-color-on-primary-high", "COLOR", "#FFFFFF"),
|
|
16
|
-
colorOnPrimaryMedium: FtCssVariableFactory.create("--ft-color-on-primary-medium", "COLOR", "rgba(255, 255, 255, 0.74)"),
|
|
17
|
-
colorOnPrimaryDisabled: FtCssVariableFactory.create("--ft-color-on-primary-disabled", "COLOR", "rgba(255, 255, 255, 0.38)"),
|
|
18
|
-
colorOnSecondary: FtCssVariableFactory.create("--ft-color-on-secondary", "COLOR", "#FFFFFF"),
|
|
19
|
-
colorOnSecondaryHigh: FtCssVariableFactory.create("--ft-color-on-secondary-high", "COLOR", "#FFFFFF"),
|
|
20
|
-
colorOnSecondaryMedium: FtCssVariableFactory.create("--ft-color-on-secondary-medium", "COLOR", "rgba(255, 255, 255, 0.74)"),
|
|
21
|
-
colorOnSecondaryDisabled: FtCssVariableFactory.create("--ft-color-on-secondary-disabled", "COLOR", "rgba(255, 255, 255, 0.38)"),
|
|
22
|
-
colorOnSurface: FtCssVariableFactory.create("--ft-color-on-surface", "COLOR", "rgba(0, 0, 0, 0.87)"),
|
|
23
|
-
colorOnSurfaceHigh: FtCssVariableFactory.create("--ft-color-on-surface-high", "COLOR", "rgba(0, 0, 0, 0.87)"),
|
|
24
|
-
colorOnSurfaceMedium: FtCssVariableFactory.create("--ft-color-on-surface-medium", "COLOR", "rgba(0, 0, 0, 0.60)"),
|
|
25
|
-
colorOnSurfaceDisabled: FtCssVariableFactory.create("--ft-color-on-surface-disabled", "COLOR", "rgba(0, 0, 0, 0.38)"),
|
|
26
|
-
opacityContentOnSurfaceDisabled: FtCssVariableFactory.create("--ft-opacity-content-on-surface-disabled", "NUMBER", "0"),
|
|
27
|
-
opacityContentOnSurfaceEnable: FtCssVariableFactory.create("--ft-opacity-content-on-surface-enable", "NUMBER", "0"),
|
|
28
|
-
opacityContentOnSurfaceHover: FtCssVariableFactory.create("--ft-opacity-content-on-surface-hover", "NUMBER", "0.04"),
|
|
29
|
-
opacityContentOnSurfaceFocused: FtCssVariableFactory.create("--ft-opacity-content-on-surface-focused", "NUMBER", "0.12"),
|
|
30
|
-
opacityContentOnSurfacePressed: FtCssVariableFactory.create("--ft-opacity-content-on-surface-pressed", "NUMBER", "0.10"),
|
|
31
|
-
opacityContentOnSurfaceSelected: FtCssVariableFactory.create("--ft-opacity-content-on-surface-selected", "NUMBER", "0.08"),
|
|
32
|
-
opacityContentOnSurfaceDragged: FtCssVariableFactory.create("--ft-opacity-content-on-surface-dragged", "NUMBER", "0.08"),
|
|
33
|
-
opacityPrimaryOnSurfaceDisabled: FtCssVariableFactory.create("--ft-opacity-primary-on-surface-disabled", "NUMBER", "0"),
|
|
34
|
-
opacityPrimaryOnSurfaceEnable: FtCssVariableFactory.create("--ft-opacity-primary-on-surface-enable", "NUMBER", "0"),
|
|
35
|
-
opacityPrimaryOnSurfaceHover: FtCssVariableFactory.create("--ft-opacity-primary-on-surface-hover", "NUMBER", "0.04"),
|
|
36
|
-
opacityPrimaryOnSurfaceFocused: FtCssVariableFactory.create("--ft-opacity-primary-on-surface-focused", "NUMBER", "0.12"),
|
|
37
|
-
opacityPrimaryOnSurfacePressed: FtCssVariableFactory.create("--ft-opacity-primary-on-surface-pressed", "NUMBER", "0.10"),
|
|
38
|
-
opacityPrimaryOnSurfaceSelected: FtCssVariableFactory.create("--ft-opacity-primary-on-surface-selected", "NUMBER", "0.08"),
|
|
39
|
-
opacityPrimaryOnSurfaceDragged: FtCssVariableFactory.create("--ft-opacity-primary-on-surface-dragged", "NUMBER", "0.08"),
|
|
40
|
-
opacitySurfaceOnPrimaryDisabled: FtCssVariableFactory.create("--ft-opacity-surface-on-primary-disabled", "NUMBER", "0"),
|
|
41
|
-
opacitySurfaceOnPrimaryEnable: FtCssVariableFactory.create("--ft-opacity-surface-on-primary-enable", "NUMBER", "0"),
|
|
42
|
-
opacitySurfaceOnPrimaryHover: FtCssVariableFactory.create("--ft-opacity-surface-on-primary-hover", "NUMBER", "0.04"),
|
|
43
|
-
opacitySurfaceOnPrimaryFocused: FtCssVariableFactory.create("--ft-opacity-surface-on-primary-focused", "NUMBER", "0.12"),
|
|
44
|
-
opacitySurfaceOnPrimaryPressed: FtCssVariableFactory.create("--ft-opacity-surface-on-primary-pressed", "NUMBER", "0.10"),
|
|
45
|
-
opacitySurfaceOnPrimarySelected: FtCssVariableFactory.create("--ft-opacity-surface-on-primary-selected", "NUMBER", "0.08"),
|
|
46
|
-
opacitySurfaceOnPrimaryDragged: FtCssVariableFactory.create("--ft-opacity-surface-on-primary-dragged", "NUMBER", "0.08"),
|
|
47
|
-
elevation00: FtCssVariableFactory.create("--ft-elevation-00", "UNKNOWN", "0px 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px 0px rgba(0, 0, 0, 0)"),
|
|
48
|
-
elevation01: FtCssVariableFactory.create("--ft-elevation-01", "UNKNOWN", "0px 1px 4px 0px rgba(0, 0, 0, 0.06), 0px 1px 2px 0px rgba(0, 0, 0, 0.14), 0px 0px 1px 0px rgba(0, 0, 0, 0.06)"),
|
|
49
|
-
elevation02: FtCssVariableFactory.create("--ft-elevation-02", "UNKNOWN", "0px 4px 10px 0px rgba(0, 0, 0, 0.06), 0px 2px 5px 0px rgba(0, 0, 0, 0.14), 0px 0px 1px 0px rgba(0, 0, 0, 0.06)"),
|
|
50
|
-
elevation03: FtCssVariableFactory.create("--ft-elevation-03", "UNKNOWN", "0px 6px 13px 0px rgba(0, 0, 0, 0.06), 0px 3px 7px 0px rgba(0, 0, 0, 0.14), 0px 1px 2px 0px rgba(0, 0, 0, 0.06)"),
|
|
51
|
-
elevation04: FtCssVariableFactory.create("--ft-elevation-04", "UNKNOWN", "0px 8px 16px 0px rgba(0, 0, 0, 0.06), 0px 4px 9px 0px rgba(0, 0, 0, 0.14), 0px 2px 3px 0px rgba(0, 0, 0, 0.06)"),
|
|
52
|
-
elevation06: FtCssVariableFactory.create("--ft-elevation-06", "UNKNOWN", "0px 12px 22px 0px rgba(0, 0, 0, 0.06), 0px 6px 13px 0px rgba(0, 0, 0, 0.14), 0px 4px 5px 0px rgba(0, 0, 0, 0.06)"),
|
|
53
|
-
elevation08: FtCssVariableFactory.create("--ft-elevation-08", "UNKNOWN", "0px 16px 28px 0px rgba(0, 0, 0, 0.06), 0px 8px 17px 0px rgba(0, 0, 0, 0.14), 0px 6px 7px 0px rgba(0, 0, 0, 0.06)"),
|
|
54
|
-
elevation12: FtCssVariableFactory.create("--ft-elevation-12", "UNKNOWN", "0px 22px 40px 0px rgba(0, 0, 0, 0.06), 0px 12px 23px 0px rgba(0, 0, 0, 0.14), 0px 10px 11px 0px rgba(0, 0, 0, 0.06)"),
|
|
55
|
-
elevation16: FtCssVariableFactory.create("--ft-elevation-16", "UNKNOWN", "0px 28px 52px 0px rgba(0, 0, 0, 0.06), 0px 16px 29px 0px rgba(0, 0, 0, 0.14), 0px 14px 15px 0px rgba(0, 0, 0, 0.06)"),
|
|
56
|
-
elevation24: FtCssVariableFactory.create("--ft-elevation-24", "UNKNOWN", "0px 40px 76px 0px rgba(0, 0, 0, 0.06), 0px 24px 41px 0px rgba(0, 0, 0, 0.14), 0px 22px 23px 0px rgba(0, 0, 0, 0.06)"),
|
|
57
|
-
borderRadiusS: FtCssVariableFactory.create("--ft-border-radius-S", "SIZE", "4px"),
|
|
58
|
-
borderRadiusM: FtCssVariableFactory.create("--ft-border-radius-M", "SIZE", "8px"),
|
|
59
|
-
borderRadiusL: FtCssVariableFactory.create("--ft-border-radius-L", "SIZE", "12px"),
|
|
60
|
-
borderRadiusXL: FtCssVariableFactory.create("--ft-border-radius-XL", "SIZE", "16px"),
|
|
61
|
-
titleFont: FtCssVariableFactory.create("--ft-title-font", "UNKNOWN", "Ubuntu, system-ui, sans-serif"),
|
|
62
|
-
contentFont: FtCssVariableFactory.create("--ft-content-font", "UNKNOWN", "'Open Sans', system-ui, sans-serif"),
|
|
63
|
-
transitionDuration: FtCssVariableFactory.create("--ft-transition-duration", "UNKNOWN", "250ms"),
|
|
64
|
-
transitionTimingFunction: FtCssVariableFactory.create("--ft-transition-timing-function", "UNKNOWN", "ease-in-out"),
|
|
3
|
+
colorPrimary: FtCssVariableFactory.create("--ft-color-primary", "", "COLOR", "#2196F3"),
|
|
4
|
+
colorPrimaryVariant: FtCssVariableFactory.create("--ft-color-primary-variant", "", "COLOR", "#1976D2"),
|
|
5
|
+
colorSecondary: FtCssVariableFactory.create("--ft-color-secondary", "", "COLOR", "#FFCC80"),
|
|
6
|
+
colorSecondaryVariant: FtCssVariableFactory.create("--ft-color-secondary-variant", "", "COLOR", "#F57C00"),
|
|
7
|
+
colorSurface: FtCssVariableFactory.create("--ft-color-surface", "", "COLOR", "#FFFFFF"),
|
|
8
|
+
colorContent: FtCssVariableFactory.create("--ft-color-content", "", "COLOR", "rgba(0, 0, 0, 0.87)"),
|
|
9
|
+
colorError: FtCssVariableFactory.create("--ft-color-error", "", "COLOR", "#B00020"),
|
|
10
|
+
colorOutline: FtCssVariableFactory.create("--ft-color-outline", "", "COLOR", "rgba(0, 0, 0, 0.14)"),
|
|
11
|
+
colorOpacityHigh: FtCssVariableFactory.create("--ft-color-opacity-high", "", "NUMBER", "1"),
|
|
12
|
+
colorOpacityMedium: FtCssVariableFactory.create("--ft-color-opacity-medium", "", "NUMBER", "0.74"),
|
|
13
|
+
colorOpacityDisabled: FtCssVariableFactory.create("--ft-color-opacity-disabled", "", "NUMBER", "0.38"),
|
|
14
|
+
colorOnPrimary: FtCssVariableFactory.create("--ft-color-on-primary", "", "COLOR", "#FFFFFF"),
|
|
15
|
+
colorOnPrimaryHigh: FtCssVariableFactory.create("--ft-color-on-primary-high", "", "COLOR", "#FFFFFF"),
|
|
16
|
+
colorOnPrimaryMedium: FtCssVariableFactory.create("--ft-color-on-primary-medium", "", "COLOR", "rgba(255, 255, 255, 0.74)"),
|
|
17
|
+
colorOnPrimaryDisabled: FtCssVariableFactory.create("--ft-color-on-primary-disabled", "", "COLOR", "rgba(255, 255, 255, 0.38)"),
|
|
18
|
+
colorOnSecondary: FtCssVariableFactory.create("--ft-color-on-secondary", "", "COLOR", "#FFFFFF"),
|
|
19
|
+
colorOnSecondaryHigh: FtCssVariableFactory.create("--ft-color-on-secondary-high", "", "COLOR", "#FFFFFF"),
|
|
20
|
+
colorOnSecondaryMedium: FtCssVariableFactory.create("--ft-color-on-secondary-medium", "", "COLOR", "rgba(255, 255, 255, 0.74)"),
|
|
21
|
+
colorOnSecondaryDisabled: FtCssVariableFactory.create("--ft-color-on-secondary-disabled", "", "COLOR", "rgba(255, 255, 255, 0.38)"),
|
|
22
|
+
colorOnSurface: FtCssVariableFactory.create("--ft-color-on-surface", "", "COLOR", "rgba(0, 0, 0, 0.87)"),
|
|
23
|
+
colorOnSurfaceHigh: FtCssVariableFactory.create("--ft-color-on-surface-high", "", "COLOR", "rgba(0, 0, 0, 0.87)"),
|
|
24
|
+
colorOnSurfaceMedium: FtCssVariableFactory.create("--ft-color-on-surface-medium", "", "COLOR", "rgba(0, 0, 0, 0.60)"),
|
|
25
|
+
colorOnSurfaceDisabled: FtCssVariableFactory.create("--ft-color-on-surface-disabled", "", "COLOR", "rgba(0, 0, 0, 0.38)"),
|
|
26
|
+
opacityContentOnSurfaceDisabled: FtCssVariableFactory.create("--ft-opacity-content-on-surface-disabled", "", "NUMBER", "0"),
|
|
27
|
+
opacityContentOnSurfaceEnable: FtCssVariableFactory.create("--ft-opacity-content-on-surface-enable", "", "NUMBER", "0"),
|
|
28
|
+
opacityContentOnSurfaceHover: FtCssVariableFactory.create("--ft-opacity-content-on-surface-hover", "", "NUMBER", "0.04"),
|
|
29
|
+
opacityContentOnSurfaceFocused: FtCssVariableFactory.create("--ft-opacity-content-on-surface-focused", "", "NUMBER", "0.12"),
|
|
30
|
+
opacityContentOnSurfacePressed: FtCssVariableFactory.create("--ft-opacity-content-on-surface-pressed", "", "NUMBER", "0.10"),
|
|
31
|
+
opacityContentOnSurfaceSelected: FtCssVariableFactory.create("--ft-opacity-content-on-surface-selected", "", "NUMBER", "0.08"),
|
|
32
|
+
opacityContentOnSurfaceDragged: FtCssVariableFactory.create("--ft-opacity-content-on-surface-dragged", "", "NUMBER", "0.08"),
|
|
33
|
+
opacityPrimaryOnSurfaceDisabled: FtCssVariableFactory.create("--ft-opacity-primary-on-surface-disabled", "", "NUMBER", "0"),
|
|
34
|
+
opacityPrimaryOnSurfaceEnable: FtCssVariableFactory.create("--ft-opacity-primary-on-surface-enable", "", "NUMBER", "0"),
|
|
35
|
+
opacityPrimaryOnSurfaceHover: FtCssVariableFactory.create("--ft-opacity-primary-on-surface-hover", "", "NUMBER", "0.04"),
|
|
36
|
+
opacityPrimaryOnSurfaceFocused: FtCssVariableFactory.create("--ft-opacity-primary-on-surface-focused", "", "NUMBER", "0.12"),
|
|
37
|
+
opacityPrimaryOnSurfacePressed: FtCssVariableFactory.create("--ft-opacity-primary-on-surface-pressed", "", "NUMBER", "0.10"),
|
|
38
|
+
opacityPrimaryOnSurfaceSelected: FtCssVariableFactory.create("--ft-opacity-primary-on-surface-selected", "", "NUMBER", "0.08"),
|
|
39
|
+
opacityPrimaryOnSurfaceDragged: FtCssVariableFactory.create("--ft-opacity-primary-on-surface-dragged", "", "NUMBER", "0.08"),
|
|
40
|
+
opacitySurfaceOnPrimaryDisabled: FtCssVariableFactory.create("--ft-opacity-surface-on-primary-disabled", "", "NUMBER", "0"),
|
|
41
|
+
opacitySurfaceOnPrimaryEnable: FtCssVariableFactory.create("--ft-opacity-surface-on-primary-enable", "", "NUMBER", "0"),
|
|
42
|
+
opacitySurfaceOnPrimaryHover: FtCssVariableFactory.create("--ft-opacity-surface-on-primary-hover", "", "NUMBER", "0.04"),
|
|
43
|
+
opacitySurfaceOnPrimaryFocused: FtCssVariableFactory.create("--ft-opacity-surface-on-primary-focused", "", "NUMBER", "0.12"),
|
|
44
|
+
opacitySurfaceOnPrimaryPressed: FtCssVariableFactory.create("--ft-opacity-surface-on-primary-pressed", "", "NUMBER", "0.10"),
|
|
45
|
+
opacitySurfaceOnPrimarySelected: FtCssVariableFactory.create("--ft-opacity-surface-on-primary-selected", "", "NUMBER", "0.08"),
|
|
46
|
+
opacitySurfaceOnPrimaryDragged: FtCssVariableFactory.create("--ft-opacity-surface-on-primary-dragged", "", "NUMBER", "0.08"),
|
|
47
|
+
elevation00: FtCssVariableFactory.create("--ft-elevation-00", "", "UNKNOWN", "0px 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px 0px rgba(0, 0, 0, 0)"),
|
|
48
|
+
elevation01: FtCssVariableFactory.create("--ft-elevation-01", "", "UNKNOWN", "0px 1px 4px 0px rgba(0, 0, 0, 0.06), 0px 1px 2px 0px rgba(0, 0, 0, 0.14), 0px 0px 1px 0px rgba(0, 0, 0, 0.06)"),
|
|
49
|
+
elevation02: FtCssVariableFactory.create("--ft-elevation-02", "", "UNKNOWN", "0px 4px 10px 0px rgba(0, 0, 0, 0.06), 0px 2px 5px 0px rgba(0, 0, 0, 0.14), 0px 0px 1px 0px rgba(0, 0, 0, 0.06)"),
|
|
50
|
+
elevation03: FtCssVariableFactory.create("--ft-elevation-03", "", "UNKNOWN", "0px 6px 13px 0px rgba(0, 0, 0, 0.06), 0px 3px 7px 0px rgba(0, 0, 0, 0.14), 0px 1px 2px 0px rgba(0, 0, 0, 0.06)"),
|
|
51
|
+
elevation04: FtCssVariableFactory.create("--ft-elevation-04", "", "UNKNOWN", "0px 8px 16px 0px rgba(0, 0, 0, 0.06), 0px 4px 9px 0px rgba(0, 0, 0, 0.14), 0px 2px 3px 0px rgba(0, 0, 0, 0.06)"),
|
|
52
|
+
elevation06: FtCssVariableFactory.create("--ft-elevation-06", "", "UNKNOWN", "0px 12px 22px 0px rgba(0, 0, 0, 0.06), 0px 6px 13px 0px rgba(0, 0, 0, 0.14), 0px 4px 5px 0px rgba(0, 0, 0, 0.06)"),
|
|
53
|
+
elevation08: FtCssVariableFactory.create("--ft-elevation-08", "", "UNKNOWN", "0px 16px 28px 0px rgba(0, 0, 0, 0.06), 0px 8px 17px 0px rgba(0, 0, 0, 0.14), 0px 6px 7px 0px rgba(0, 0, 0, 0.06)"),
|
|
54
|
+
elevation12: FtCssVariableFactory.create("--ft-elevation-12", "", "UNKNOWN", "0px 22px 40px 0px rgba(0, 0, 0, 0.06), 0px 12px 23px 0px rgba(0, 0, 0, 0.14), 0px 10px 11px 0px rgba(0, 0, 0, 0.06)"),
|
|
55
|
+
elevation16: FtCssVariableFactory.create("--ft-elevation-16", "", "UNKNOWN", "0px 28px 52px 0px rgba(0, 0, 0, 0.06), 0px 16px 29px 0px rgba(0, 0, 0, 0.14), 0px 14px 15px 0px rgba(0, 0, 0, 0.06)"),
|
|
56
|
+
elevation24: FtCssVariableFactory.create("--ft-elevation-24", "", "UNKNOWN", "0px 40px 76px 0px rgba(0, 0, 0, 0.06), 0px 24px 41px 0px rgba(0, 0, 0, 0.14), 0px 22px 23px 0px rgba(0, 0, 0, 0.06)"),
|
|
57
|
+
borderRadiusS: FtCssVariableFactory.create("--ft-border-radius-S", "", "SIZE", "4px"),
|
|
58
|
+
borderRadiusM: FtCssVariableFactory.create("--ft-border-radius-M", "", "SIZE", "8px"),
|
|
59
|
+
borderRadiusL: FtCssVariableFactory.create("--ft-border-radius-L", "", "SIZE", "12px"),
|
|
60
|
+
borderRadiusXL: FtCssVariableFactory.create("--ft-border-radius-XL", "", "SIZE", "16px"),
|
|
61
|
+
titleFont: FtCssVariableFactory.create("--ft-title-font", "", "UNKNOWN", "Ubuntu, system-ui, sans-serif"),
|
|
62
|
+
contentFont: FtCssVariableFactory.create("--ft-content-font", "", "UNKNOWN", "'Open Sans', system-ui, sans-serif"),
|
|
63
|
+
transitionDuration: FtCssVariableFactory.create("--ft-transition-duration", "", "UNKNOWN", "250ms"),
|
|
64
|
+
transitionTimingFunction: FtCssVariableFactory.create("--ft-transition-timing-function", "", "UNKNOWN", "ease-in-out"),
|
|
65
65
|
};
|
package/build/globals.min.js
CHANGED
|
@@ -1,36 +1,36 @@
|
|
|
1
|
-
!function(t,
|
|
1
|
+
!function(t,o){"object"==typeof exports&&"undefined"!=typeof module?o(exports):"function"==typeof define&&define.amd?define(["exports"],o):o((t="undefined"!=typeof globalThis?globalThis:t||self).ftGlobals={})}(this,(function(t){
|
|
2
2
|
/**
|
|
3
3
|
* @license
|
|
4
4
|
* Copyright 2019 Google LLC
|
|
5
5
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
6
6
|
*/
|
|
7
|
-
const
|
|
7
|
+
const o=window,e=o.ShadowRoot&&(void 0===o.ShadyCSS||o.ShadyCSS.nativeShadow)&&"adoptedStyleSheets"in Document.prototype&&"replace"in CSSStyleSheet.prototype,r=Symbol(),n=new WeakMap;let i=class{constructor(t,o,e){if(this._$cssResult$=!0,e!==r)throw Error("CSSResult is not constructable. Use `unsafeCSS` or `css` instead.");this.cssText=t,this.t=o}get styleSheet(){let t=this.o;const o=this.t;if(e&&void 0===t){const e=void 0!==o&&1===o.length;e&&(t=n.get(o)),void 0===t&&((this.o=t=new CSSStyleSheet).replaceSync(this.cssText),e&&n.set(o,t))}return t}toString(){return this.cssText}};const a=t=>new i("string"==typeof t?t:t+"",void 0,r),c=(t,...o)=>{const e=1===t.length?t[0]:o.reduce(((o,e,r)=>o+(t=>{if(!0===t._$cssResult$)return t.cssText;if("number"==typeof t)return t;throw Error("Value passed to 'css' function must be a 'css' function result: "+t+". Use 'unsafeCSS' to pass non-literal values, but take care to ensure page security.")})(e)+t[r+1]),t[0]);return new i(e,t,r)},l=(t,r)=>{e?t.adoptedStyleSheets=r.map((t=>t instanceof CSSStyleSheet?t:t.styleSheet)):r.forEach((e=>{const r=document.createElement("style"),n=o.litNonce;void 0!==n&&r.setAttribute("nonce",n),r.textContent=e.cssText,t.appendChild(r)}))},s=e?t=>t:t=>t instanceof CSSStyleSheet?(t=>{let o="";for(const e of t.cssRules)o+=e.cssText;return a(o)})(t):t
|
|
8
8
|
/**
|
|
9
9
|
* @license
|
|
10
10
|
* Copyright 2017 Google LLC
|
|
11
11
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
12
|
-
*/;var
|
|
12
|
+
*/;var f;const u=window,d=u.trustedTypes,p=d?d.emptyScript:"",h=u.reactiveElementPolyfillSupport,y={toAttribute(t,o){switch(o){case Boolean:t=t?p:null;break;case Object:case Array:t=null==t?t:JSON.stringify(t)}return t},fromAttribute(t,o){let e=t;switch(o){case Boolean:e=null!==t;break;case Number:e=null===t?null:Number(t);break;case Object:case Array:try{e=JSON.parse(t)}catch(t){e=null}}return e}},g=(t,o)=>o!==t&&(o==o||t==t),b={attribute:!0,type:String,converter:y,reflect:!1,hasChanged:g};let m=class extends HTMLElement{constructor(){super(),this._$Ei=new Map,this.isUpdatePending=!1,this.hasUpdated=!1,this._$El=null,this.u()}static addInitializer(t){var o;this.finalize(),(null!==(o=this.h)&&void 0!==o?o:this.h=[]).push(t)}static get observedAttributes(){this.finalize();const t=[];return this.elementProperties.forEach(((o,e)=>{const r=this._$Ep(e,o);void 0!==r&&(this._$Ev.set(r,e),t.push(r))})),t}static createProperty(t,o=b){if(o.state&&(o.attribute=!1),this.finalize(),this.elementProperties.set(t,o),!o.noAccessor&&!this.prototype.hasOwnProperty(t)){const e="symbol"==typeof t?Symbol():"__"+t,r=this.getPropertyDescriptor(t,e,o);void 0!==r&&Object.defineProperty(this.prototype,t,r)}}static getPropertyDescriptor(t,o,e){return{get(){return this[o]},set(r){const n=this[t];this[o]=r,this.requestUpdate(t,n,e)},configurable:!0,enumerable:!0}}static getPropertyOptions(t){return this.elementProperties.get(t)||b}static finalize(){if(this.hasOwnProperty("finalized"))return!1;this.finalized=!0;const t=Object.getPrototypeOf(this);if(t.finalize(),void 0!==t.h&&(this.h=[...t.h]),this.elementProperties=new Map(t.elementProperties),this._$Ev=new Map,this.hasOwnProperty("properties")){const t=this.properties,o=[...Object.getOwnPropertyNames(t),...Object.getOwnPropertySymbols(t)];for(const e of o)this.createProperty(e,t[e])}return this.elementStyles=this.finalizeStyles(this.styles),!0}static finalizeStyles(t){const o=[];if(Array.isArray(t)){const e=new Set(t.flat(1/0).reverse());for(const t of e)o.unshift(s(t))}else void 0!==t&&o.push(s(t));return o}static _$Ep(t,o){const e=o.attribute;return!1===e?void 0:"string"==typeof e?e:"string"==typeof t?t.toLowerCase():void 0}u(){var t;this._$E_=new Promise((t=>this.enableUpdating=t)),this._$AL=new Map,this._$Eg(),this.requestUpdate(),null===(t=this.constructor.h)||void 0===t||t.forEach((t=>t(this)))}addController(t){var o,e;(null!==(o=this._$ES)&&void 0!==o?o:this._$ES=[]).push(t),void 0!==this.renderRoot&&this.isConnected&&(null===(e=t.hostConnected)||void 0===e||e.call(t))}removeController(t){var o;null===(o=this._$ES)||void 0===o||o.splice(this._$ES.indexOf(t)>>>0,1)}_$Eg(){this.constructor.elementProperties.forEach(((t,o)=>{this.hasOwnProperty(o)&&(this._$Ei.set(o,this[o]),delete this[o])}))}createRenderRoot(){var t;const o=null!==(t=this.shadowRoot)&&void 0!==t?t:this.attachShadow(this.constructor.shadowRootOptions);return l(o,this.constructor.elementStyles),o}connectedCallback(){var t;void 0===this.renderRoot&&(this.renderRoot=this.createRenderRoot()),this.enableUpdating(!0),null===(t=this._$ES)||void 0===t||t.forEach((t=>{var o;return null===(o=t.hostConnected)||void 0===o?void 0:o.call(t)}))}enableUpdating(t){}disconnectedCallback(){var t;null===(t=this._$ES)||void 0===t||t.forEach((t=>{var o;return null===(o=t.hostDisconnected)||void 0===o?void 0:o.call(t)}))}attributeChangedCallback(t,o,e){this._$AK(t,e)}_$EO(t,o,e=b){var r;const n=this.constructor._$Ep(t,e);if(void 0!==n&&!0===e.reflect){const i=(void 0!==(null===(r=e.converter)||void 0===r?void 0:r.toAttribute)?e.converter:y).toAttribute(o,e.type);this._$El=t,null==i?this.removeAttribute(n):this.setAttribute(n,i),this._$El=null}}_$AK(t,o){var e;const r=this.constructor,n=r._$Ev.get(t);if(void 0!==n&&this._$El!==n){const t=r.getPropertyOptions(n),i="function"==typeof t.converter?{fromAttribute:t.converter}:void 0!==(null===(e=t.converter)||void 0===e?void 0:e.fromAttribute)?t.converter:y;this._$El=n,this[n]=i.fromAttribute(o,t.type),this._$El=null}}requestUpdate(t,o,e){let r=!0;void 0!==t&&(((e=e||this.constructor.getPropertyOptions(t)).hasChanged||g)(this[t],o)?(this._$AL.has(t)||this._$AL.set(t,o),!0===e.reflect&&this._$El!==t&&(void 0===this._$EC&&(this._$EC=new Map),this._$EC.set(t,e))):r=!1),!this.isUpdatePending&&r&&(this._$E_=this._$Ej())}async _$Ej(){this.isUpdatePending=!0;try{await this._$E_}catch(t){Promise.reject(t)}const t=this.scheduleUpdate();return null!=t&&await t,!this.isUpdatePending}scheduleUpdate(){return this.performUpdate()}performUpdate(){var t;if(!this.isUpdatePending)return;this.hasUpdated,this._$Ei&&(this._$Ei.forEach(((t,o)=>this[o]=t)),this._$Ei=void 0);let o=!1;const e=this._$AL;try{o=this.shouldUpdate(e),o?(this.willUpdate(e),null===(t=this._$ES)||void 0===t||t.forEach((t=>{var o;return null===(o=t.hostUpdate)||void 0===o?void 0:o.call(t)})),this.update(e)):this._$Ek()}catch(t){throw o=!1,this._$Ek(),t}o&&this._$AE(e)}willUpdate(t){}_$AE(t){var o;null===(o=this._$ES)||void 0===o||o.forEach((t=>{var o;return null===(o=t.hostUpdated)||void 0===o?void 0:o.call(t)})),this.hasUpdated||(this.hasUpdated=!0,this.firstUpdated(t)),this.updated(t)}_$Ek(){this._$AL=new Map,this.isUpdatePending=!1}get updateComplete(){return this.getUpdateComplete()}getUpdateComplete(){return this._$E_}shouldUpdate(t){return!0}update(t){void 0!==this._$EC&&(this._$EC.forEach(((t,o)=>this._$EO(o,this[o],t))),this._$EC=void 0),this._$Ek()}updated(t){}firstUpdated(t){}};
|
|
13
13
|
/**
|
|
14
14
|
* @license
|
|
15
15
|
* Copyright 2017 Google LLC
|
|
16
16
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
17
17
|
*/
|
|
18
|
-
var
|
|
18
|
+
var O;m.finalized=!0,m.elementProperties=new Map,m.elementStyles=[],m.shadowRootOptions={mode:"open"},null==h||h({ReactiveElement:m}),(null!==(f=u.reactiveElementVersions)&&void 0!==f?f:u.reactiveElementVersions=[]).push("1.6.1");const v=window,S=v.trustedTypes,N=S?S.createPolicy("lit-html",{createHTML:t=>t}):void 0,C="$lit$",w=`lit$${(Math.random()+"").slice(9)}$`,x="?"+w,E=`<${x}>`,R=document,L=()=>R.createComment(""),U=t=>null===t||"object"!=typeof t&&"function"!=typeof t,I=Array.isArray,W=t=>I(t)||"function"==typeof(null==t?void 0:t[Symbol.iterator]),k="[ \t\n\f\r]",F=/<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g,K=/-->/g,B=/>/g,A=RegExp(`>|${k}(?:([^\\s"'>=/]+)(${k}*=${k}*(?:[^ \t\n\f\r"'\`<>=]|("|')|))|$)`,"g"),j=/'/g,Z=/"/g,P=/^(?:script|style|textarea|title)$/i,D=t=>(o,...e)=>({_$litType$:t,strings:o,values:e}),z=D(1),M=D(2),_=Symbol.for("lit-noChange"),H=Symbol.for("lit-nothing"),$=new WeakMap,T=R.createTreeWalker(R,129,null,!1),G=(t,o)=>{const e=t.length-1,r=[];let n,i=2===o?"<svg>":"",a=F;for(let o=0;o<e;o++){const e=t[o];let c,l,s=-1,f=0;for(;f<e.length&&(a.lastIndex=f,l=a.exec(e),null!==l);)f=a.lastIndex,a===F?"!--"===l[1]?a=K:void 0!==l[1]?a=B:void 0!==l[2]?(P.test(l[2])&&(n=RegExp("</"+l[2],"g")),a=A):void 0!==l[3]&&(a=A):a===A?">"===l[0]?(a=null!=n?n:F,s=-1):void 0===l[1]?s=-2:(s=a.lastIndex-l[2].length,c=l[1],a=void 0===l[3]?A:'"'===l[3]?Z:j):a===Z||a===j?a=A:a===K||a===B?a=F:(a=A,n=void 0);const u=a===A&&t[o+1].startsWith("/>")?" ":"";i+=a===F?e+E:s>=0?(r.push(c),e.slice(0,s)+C+e.slice(s)+w+u):e+w+(-2===s?(r.push(void 0),o):u)}const c=i+(t[e]||"<?>")+(2===o?"</svg>":"");if(!Array.isArray(t)||!t.hasOwnProperty("raw"))throw Error("invalid template strings array");return[void 0!==N?N.createHTML(c):c,r]};class V{constructor({strings:t,_$litType$:o},e){let r;this.parts=[];let n=0,i=0;const a=t.length-1,c=this.parts,[l,s]=G(t,o);if(this.el=V.createElement(l,e),T.currentNode=this.el.content,2===o){const t=this.el.content,o=t.firstChild;o.remove(),t.append(...o.childNodes)}for(;null!==(r=T.nextNode())&&c.length<a;){if(1===r.nodeType){if(r.hasAttributes()){const t=[];for(const o of r.getAttributeNames())if(o.endsWith(C)||o.startsWith(w)){const e=s[i++];if(t.push(o),void 0!==e){const t=r.getAttribute(e.toLowerCase()+C).split(w),o=/([.?@])?(.*)/.exec(e);c.push({type:1,index:n,name:o[2],strings:t,ctor:"."===o[1]?Q:"?"===o[1]?ot:"@"===o[1]?et:X})}else c.push({type:6,index:n})}for(const o of t)r.removeAttribute(o)}if(P.test(r.tagName)){const t=r.textContent.split(w),o=t.length-1;if(o>0){r.textContent=S?S.emptyScript:"";for(let e=0;e<o;e++)r.append(t[e],L()),T.nextNode(),c.push({type:2,index:++n});r.append(t[o],L())}}}else if(8===r.nodeType)if(r.data===x)c.push({type:2,index:n});else{let t=-1;for(;-1!==(t=r.data.indexOf(w,t+1));)c.push({type:7,index:n}),t+=w.length-1}n++}}static createElement(t,o){const e=R.createElement("template");return e.innerHTML=t,e}}function q(t,o,e=t,r){var n,i,a,c;if(o===_)return o;let l=void 0!==r?null===(n=e._$Co)||void 0===n?void 0:n[r]:e._$Cl;const s=U(o)?void 0:o._$litDirective$;return(null==l?void 0:l.constructor)!==s&&(null===(i=null==l?void 0:l._$AO)||void 0===i||i.call(l,!1),void 0===s?l=void 0:(l=new s(t),l._$AT(t,e,r)),void 0!==r?(null!==(a=(c=e)._$Co)&&void 0!==a?a:c._$Co=[])[r]=l:e._$Cl=l),void 0!==l&&(o=q(t,l._$AS(t,o.values),l,r)),o}let Y=class{constructor(t,o){this._$AV=[],this._$AN=void 0,this._$AD=t,this._$AM=o}get parentNode(){return this._$AM.parentNode}get _$AU(){return this._$AM._$AU}u(t){var o;const{el:{content:e},parts:r}=this._$AD,n=(null!==(o=null==t?void 0:t.creationScope)&&void 0!==o?o:R).importNode(e,!0);T.currentNode=n;let i=T.nextNode(),a=0,c=0,l=r[0];for(;void 0!==l;){if(a===l.index){let o;2===l.type?o=new J(i,i.nextSibling,this,t):1===l.type?o=new l.ctor(i,l.name,l.strings,this,t):6===l.type&&(o=new rt(i,this,t)),this._$AV.push(o),l=r[++c]}a!==(null==l?void 0:l.index)&&(i=T.nextNode(),a++)}return n}v(t){let o=0;for(const e of this._$AV)void 0!==e&&(void 0!==e.strings?(e._$AI(t,e,o),o+=e.strings.length-2):e._$AI(t[o])),o++}},J=class t{constructor(t,o,e,r){var n;this.type=2,this._$AH=H,this._$AN=void 0,this._$AA=t,this._$AB=o,this._$AM=e,this.options=r,this._$Cp=null===(n=null==r?void 0:r.isConnected)||void 0===n||n}get _$AU(){var t,o;return null!==(o=null===(t=this._$AM)||void 0===t?void 0:t._$AU)&&void 0!==o?o:this._$Cp}get parentNode(){let t=this._$AA.parentNode;const o=this._$AM;return void 0!==o&&11===(null==t?void 0:t.nodeType)&&(t=o.parentNode),t}get startNode(){return this._$AA}get endNode(){return this._$AB}_$AI(t,o=this){t=q(this,t,o),U(t)?t===H||null==t||""===t?(this._$AH!==H&&this._$AR(),this._$AH=H):t!==this._$AH&&t!==_&&this._(t):void 0!==t._$litType$?this.g(t):void 0!==t.nodeType?this.$(t):W(t)?this.T(t):this._(t)}k(t){return this._$AA.parentNode.insertBefore(t,this._$AB)}$(t){this._$AH!==t&&(this._$AR(),this._$AH=this.k(t))}_(t){this._$AH!==H&&U(this._$AH)?this._$AA.nextSibling.data=t:this.$(R.createTextNode(t)),this._$AH=t}g(t){var o;const{values:e,_$litType$:r}=t,n="number"==typeof r?this._$AC(t):(void 0===r.el&&(r.el=V.createElement(r.h,this.options)),r);if((null===(o=this._$AH)||void 0===o?void 0:o._$AD)===n)this._$AH.v(e);else{const t=new Y(n,this),o=t.u(this.options);t.v(e),this.$(o),this._$AH=t}}_$AC(t){let o=$.get(t.strings);return void 0===o&&$.set(t.strings,o=new V(t)),o}T(o){I(this._$AH)||(this._$AH=[],this._$AR());const e=this._$AH;let r,n=0;for(const i of o)n===e.length?e.push(r=new t(this.k(L()),this.k(L()),this,this.options)):r=e[n],r._$AI(i),n++;n<e.length&&(this._$AR(r&&r._$AB.nextSibling,n),e.length=n)}_$AR(t=this._$AA.nextSibling,o){var e;for(null===(e=this._$AP)||void 0===e||e.call(this,!1,!0,o);t&&t!==this._$AB;){const o=t.nextSibling;t.remove(),t=o}}setConnected(t){var o;void 0===this._$AM&&(this._$Cp=t,null===(o=this._$AP)||void 0===o||o.call(this,t))}},X=class{constructor(t,o,e,r,n){this.type=1,this._$AH=H,this._$AN=void 0,this.element=t,this.name=o,this._$AM=r,this.options=n,e.length>2||""!==e[0]||""!==e[1]?(this._$AH=Array(e.length-1).fill(new String),this.strings=e):this._$AH=H}get tagName(){return this.element.tagName}get _$AU(){return this._$AM._$AU}_$AI(t,o=this,e,r){const n=this.strings;let i=!1;if(void 0===n)t=q(this,t,o,0),i=!U(t)||t!==this._$AH&&t!==_,i&&(this._$AH=t);else{const r=t;let a,c;for(t=n[0],a=0;a<n.length-1;a++)c=q(this,r[e+a],o,a),c===_&&(c=this._$AH[a]),i||(i=!U(c)||c!==this._$AH[a]),c===H?t=H:t!==H&&(t+=(null!=c?c:"")+n[a+1]),this._$AH[a]=c}i&&!r&&this.j(t)}j(t){t===H?this.element.removeAttribute(this.name):this.element.setAttribute(this.name,null!=t?t:"")}},Q=class extends X{constructor(){super(...arguments),this.type=3}j(t){this.element[this.name]=t===H?void 0:t}};const tt=S?S.emptyScript:"";let ot=class extends X{constructor(){super(...arguments),this.type=4}j(t){t&&t!==H?this.element.setAttribute(this.name,tt):this.element.removeAttribute(this.name)}},et=class extends X{constructor(t,o,e,r,n){super(t,o,e,r,n),this.type=5}_$AI(t,o=this){var e;if((t=null!==(e=q(this,t,o,0))&&void 0!==e?e:H)===_)return;const r=this._$AH,n=t===H&&r!==H||t.capture!==r.capture||t.once!==r.once||t.passive!==r.passive,i=t!==H&&(r===H||n);n&&this.element.removeEventListener(this.name,this,r),i&&this.element.addEventListener(this.name,this,t),this._$AH=t}handleEvent(t){var o,e;"function"==typeof this._$AH?this._$AH.call(null!==(e=null===(o=this.options)||void 0===o?void 0:o.host)&&void 0!==e?e:this.element,t):this._$AH.handleEvent(t)}},rt=class{constructor(t,o,e){this.element=t,this.type=6,this._$AN=void 0,this._$AM=o,this.options=e}get _$AU(){return this._$AM._$AU}_$AI(t){q(this,t)}};const nt={O:C,P:w,A:x,C:1,M:G,L:Y,D:W,R:q,I:J,V:X,H:ot,N:et,U:Q,F:rt},it=v.litHtmlPolyfillSupport;null==it||it(V,J),(null!==(O=v.litHtmlVersions)&&void 0!==O?O:v.litHtmlVersions=[]).push("2.7.3");const at=(t,o,e)=>{var r,n;const i=null!==(r=null==e?void 0:e.renderBefore)&&void 0!==r?r:o;let a=i._$litPart$;if(void 0===a){const t=null!==(n=null==e?void 0:e.renderBefore)&&void 0!==n?n:null;i._$litPart$=a=new J(o.insertBefore(L(),t),t,void 0,null!=e?e:{})}return a._$AI(t),a
|
|
19
19
|
/**
|
|
20
20
|
* @license
|
|
21
21
|
* Copyright 2017 Google LLC
|
|
22
22
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
23
|
-
*/};var
|
|
23
|
+
*/};var ct,lt;const st=m;let ft=class extends m{constructor(){super(...arguments),this.renderOptions={host:this},this._$Do=void 0}createRenderRoot(){var t,o;const e=super.createRenderRoot();return null!==(t=(o=this.renderOptions).renderBefore)&&void 0!==t||(o.renderBefore=e.firstChild),e}update(t){const o=this.render();this.hasUpdated||(this.renderOptions.isConnected=this.isConnected),super.update(t),this._$Do=at(o,this.renderRoot,this.renderOptions)}connectedCallback(){var t;super.connectedCallback(),null===(t=this._$Do)||void 0===t||t.setConnected(!0)}disconnectedCallback(){var t;super.disconnectedCallback(),null===(t=this._$Do)||void 0===t||t.setConnected(!1)}render(){return _}};ft.finalized=!0,ft._$litElement$=!0,null===(ct=globalThis.litElementHydrateSupport)||void 0===ct||ct.call(globalThis,{LitElement:ft});const ut=globalThis.litElementPolyfillSupport;null==ut||ut({LitElement:ft});(null!==(lt=globalThis.litElementVersions)&&void 0!==lt?lt:globalThis.litElementVersions=[]).push("3.3.2");var dt=Object.freeze({__proto__:null,CSSResult:i,LitElement:ft,ReactiveElement:m,UpdatingElement:st,_$LE:{_$AK:(t,o,e)=>{t._$AK(o,e)},_$AL:t=>t._$AL},_$LH:nt,adoptStyles:l,css:c,defaultConverter:y,getCompatibleStyle:s,html:z,isServer:!1,noChange:_,notEqual:g,nothing:H,render:at,supportsAdoptingStyleSheets:e,svg:M,unsafeCSS:a});
|
|
24
24
|
/**
|
|
25
25
|
* @license
|
|
26
26
|
* Copyright 2017 Google LLC
|
|
27
27
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
28
|
-
*/const
|
|
28
|
+
*/const pt=(t,o)=>"method"===o.kind&&o.descriptor&&!("value"in o.descriptor)?{...o,finisher(e){e.createProperty(o.key,t)}}:{kind:"field",key:Symbol(),placement:"own",descriptor:{},originalKey:o.key,initializer(){"function"==typeof o.initializer&&(this[o.key]=o.initializer.call(this))},finisher(e){e.createProperty(o.key,t)}};
|
|
29
29
|
/**
|
|
30
30
|
* @license
|
|
31
31
|
* Copyright 2017 Google LLC
|
|
32
32
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
33
|
-
*/function
|
|
33
|
+
*/function ht(t){return(o,e)=>void 0!==e?((t,o,e)=>{o.constructor.createProperty(e,t)})(t,o,e):pt(t,o)
|
|
34
34
|
/**
|
|
35
35
|
* @license
|
|
36
36
|
* Copyright 2017 Google LLC
|
|
@@ -41,7 +41,7 @@ var w;m.finalized=!0,m.elementProperties=new Map,m.elementStyles=[],m.shadowRoot
|
|
|
41
41
|
* Copyright 2017 Google LLC
|
|
42
42
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
43
43
|
*/
|
|
44
|
-
const
|
|
44
|
+
const yt=({finisher:t,descriptor:o})=>(e,r)=>{var n;if(void 0===r){const r=null!==(n=e.originalKey)&&void 0!==n?n:e.key,i=null!=o?{kind:"method",placement:"prototype",key:r,descriptor:o(e.key)}:{...e,key:r};return null!=t&&(i.finisher=function(o){t(o,r)}),i}{const n=e.constructor;void 0!==o&&Object.defineProperty(e,r,o(r)),null==t||t(n,r)}}
|
|
45
45
|
/**
|
|
46
46
|
* @license
|
|
47
47
|
* Copyright 2017 Google LLC
|
|
@@ -52,57 +52,57 @@ const pt=({finisher:t,descriptor:e})=>(n,r)=>{var i;if(void 0===r){const r=null!
|
|
|
52
52
|
* Copyright 2021 Google LLC
|
|
53
53
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
54
54
|
*/
|
|
55
|
-
var
|
|
55
|
+
var gt;const bt=null!=(null===(gt=window.HTMLSlotElement)||void 0===gt?void 0:gt.prototype.assignedElements)?(t,o)=>t.assignedElements(o):(t,o)=>t.assignedNodes(o).filter((t=>t.nodeType===Node.ELEMENT_NODE));function mt(t){const{slot:o,selector:e}=null!=t?t:{};return yt({descriptor:r=>({get(){var r;const n="slot"+(o?`[name=${o}]`:":not([name])"),i=null===(r=this.renderRoot)||void 0===r?void 0:r.querySelector(n),a=null!=i?bt(i,t):[];return e?a.filter((t=>t.matches(e))):a},enumerable:!0,configurable:!0})})}
|
|
56
56
|
/**
|
|
57
57
|
* @license
|
|
58
58
|
* Copyright 2017 Google LLC
|
|
59
59
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
60
|
-
*/var
|
|
60
|
+
*/var Ot=Object.freeze({__proto__:null,customElement:t=>o=>"function"==typeof o?((t,o)=>(customElements.define(t,o),o))(t,o):((t,o)=>{const{kind:e,elements:r}=o;return{kind:e,elements:r,finisher(o){customElements.define(t,o)}}})(t,o),eventOptions:function(t){return yt({finisher:(o,e)=>{Object.assign(o.prototype[e],t)}})}
|
|
61
61
|
/**
|
|
62
62
|
* @license
|
|
63
63
|
* Copyright 2017 Google LLC
|
|
64
64
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
65
|
-
*/,property:
|
|
65
|
+
*/,property:ht,query:function(t,o){return yt({descriptor:e=>{const r={get(){var o,e;return null!==(e=null===(o=this.renderRoot)||void 0===o?void 0:o.querySelector(t))&&void 0!==e?e:null},enumerable:!0,configurable:!0};if(o){const o="symbol"==typeof e?Symbol():"__"+e;r.get=function(){var e,r;return void 0===this[o]&&(this[o]=null!==(r=null===(e=this.renderRoot)||void 0===e?void 0:e.querySelector(t))&&void 0!==r?r:null),this[o]}}return r}})}
|
|
66
66
|
/**
|
|
67
67
|
* @license
|
|
68
68
|
* Copyright 2017 Google LLC
|
|
69
69
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
70
|
-
*/,queryAll:function(t){return
|
|
70
|
+
*/,queryAll:function(t){return yt({descriptor:o=>({get(){var o,e;return null!==(e=null===(o=this.renderRoot)||void 0===o?void 0:o.querySelectorAll(t))&&void 0!==e?e:[]},enumerable:!0,configurable:!0})})}
|
|
71
71
|
/**
|
|
72
72
|
* @license
|
|
73
73
|
* Copyright 2017 Google LLC
|
|
74
74
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
75
|
-
*/,queryAssignedElements:mt,queryAssignedNodes:function(t,e
|
|
75
|
+
*/,queryAssignedElements:mt,queryAssignedNodes:function(t,o,e){let r,n=t;return"object"==typeof t?(n=t.slot,r=t):r={flatten:o},e?mt({slot:n,flatten:o,selector:e}):yt({descriptor:t=>({get(){var t,o;const e="slot"+(n?`[name=${n}]`:":not([name])"),i=null===(t=this.renderRoot)||void 0===t?void 0:t.querySelector(e);return null!==(o=null==i?void 0:i.assignedNodes(r))&&void 0!==o?o:[]},enumerable:!0,configurable:!0})})},queryAsync:function(t){return yt({descriptor:o=>({async get(){var o;return await this.updateComplete,null===(o=this.renderRoot)||void 0===o?void 0:o.querySelector(t)},enumerable:!0,configurable:!0})})},state:function(t){return ht({...t,state:!0})}});
|
|
76
76
|
/**
|
|
77
77
|
* @license
|
|
78
78
|
* Copyright 2017 Google LLC
|
|
79
79
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
80
|
-
*/const
|
|
80
|
+
*/const vt=1,St=2,Nt=t=>(...o)=>({_$litDirective$:t,values:o});let Ct=class{constructor(t){}get _$AU(){return this._$AM._$AU}_$AT(t,o,e){this._$Ct=t,this._$AM=o,this._$Ci=e}_$AS(t,o){return this.update(t,o)}update(t,o){return this.render(...o)}};
|
|
81
81
|
/**
|
|
82
82
|
* @license
|
|
83
83
|
* Copyright 2020 Google LLC
|
|
84
84
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
85
|
-
*/const{I:
|
|
85
|
+
*/const{I:wt}=nt,xt=()=>document.createComment(""),Et=(t,o,e)=>{var r;const n=t._$AA.parentNode,i=void 0===o?t._$AB:o._$AA;if(void 0===e){const o=n.insertBefore(xt(),i),r=n.insertBefore(xt(),i);e=new wt(o,r,t,t.options)}else{const o=e._$AB.nextSibling,a=e._$AM,c=a!==t;if(c){let o;null===(r=e._$AQ)||void 0===r||r.call(e,t),e._$AM=t,void 0!==e._$AP&&(o=t._$AU)!==a._$AU&&e._$AP(o)}if(o!==i||c){let t=e._$AA;for(;t!==o;){const o=t.nextSibling;n.insertBefore(t,i),t=o}}}return e},Rt=(t,o,e=t)=>(t._$AI(o,e),t),Lt={},Ut=t=>{var o;null===(o=t._$AP)||void 0===o||o.call(t,!1,!0);let e=t._$AA;const r=t._$AB.nextSibling;for(;e!==r;){const t=e.nextSibling;e.remove(),e=t}},It=(t,o,e)=>{const r=new Map;for(let n=o;n<=e;n++)r.set(t[n],n);return r},Wt=Nt(class extends Ct{constructor(t){if(super(t),t.type!==St)throw Error("repeat() can only be used in text expressions")}dt(t,o,e){let r;void 0===e?e=o:void 0!==o&&(r=o);const n=[],i=[];let a=0;for(const o of t)n[a]=r?r(o,a):a,i[a]=e(o,a),a++;return{values:i,keys:n}}render(t,o,e){return this.dt(t,o,e).values}update(t,[o,e,r]){var n;const i=(t=>t._$AH)(t),{values:a,keys:c}=this.dt(o,e,r);if(!Array.isArray(i))return this.ht=c,a;const l=null!==(n=this.ht)&&void 0!==n?n:this.ht=[],s=[];let f,u,d=0,p=i.length-1,h=0,y=a.length-1;for(;d<=p&&h<=y;)if(null===i[d])d++;else if(null===i[p])p--;else if(l[d]===c[h])s[h]=Rt(i[d],a[h]),d++,h++;else if(l[p]===c[y])s[y]=Rt(i[p],a[y]),p--,y--;else if(l[d]===c[y])s[y]=Rt(i[d],a[y]),Et(t,s[y+1],i[d]),d++,y--;else if(l[p]===c[h])s[h]=Rt(i[p],a[h]),Et(t,i[d],i[p]),p--,h++;else if(void 0===f&&(f=It(c,h,y),u=It(l,d,p)),f.has(l[d]))if(f.has(l[p])){const o=u.get(c[h]),e=void 0!==o?i[o]:null;if(null===e){const o=Et(t,i[d]);Rt(o,a[h]),s[h]=o}else s[h]=Rt(e,a[h]),Et(t,i[d],e),i[o]=null;h++}else Ut(i[p]),p--;else Ut(i[d]),d++;for(;h<=y;){const o=Et(t,s[y+1]);Rt(o,a[h]),s[h++]=o}for(;d<=p;){const t=i[d++];null!==t&&Ut(t)}return this.ht=c,((t,o=Lt)=>{t._$AH=o})(t,s),_}});
|
|
86
86
|
/**
|
|
87
87
|
* @license
|
|
88
88
|
* Copyright 2017 Google LLC
|
|
89
89
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
90
|
-
*/var
|
|
90
|
+
*/var kt=Object.freeze({__proto__:null,repeat:Wt});
|
|
91
91
|
/**
|
|
92
92
|
* @license
|
|
93
93
|
* Copyright 2018 Google LLC
|
|
94
94
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
95
|
-
*/const
|
|
95
|
+
*/const Ft=Nt(class extends Ct{constructor(t){var o;if(super(t),t.type!==vt||"class"!==t.name||(null===(o=t.strings)||void 0===o?void 0:o.length)>2)throw Error("`classMap()` can only be used in the `class` attribute and must be the only part in the attribute.")}render(t){return" "+Object.keys(t).filter((o=>t[o])).join(" ")+" "}update(t,[o]){var e,r;if(void 0===this.it){this.it=new Set,void 0!==t.strings&&(this.nt=new Set(t.strings.join(" ").split(/\s/).filter((t=>""!==t))));for(const t in o)o[t]&&!(null===(e=this.nt)||void 0===e?void 0:e.has(t))&&this.it.add(t);return this.render(o)}const n=t.element.classList;this.it.forEach((t=>{t in o||(n.remove(t),this.it.delete(t))}));for(const t in o){const e=!!o[t];e===this.it.has(t)||(null===(r=this.nt)||void 0===r?void 0:r.has(t))||(e?(n.add(t),this.it.add(t)):(n.remove(t),this.it.delete(t)))}return _}});var Kt=Object.freeze({__proto__:null,classMap:Ft});
|
|
96
96
|
/**
|
|
97
97
|
* @license
|
|
98
98
|
* Copyright 2018 Google LLC
|
|
99
99
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
100
|
-
*/const
|
|
100
|
+
*/const Bt="important",At=" !"+Bt,jt=Nt(class extends Ct{constructor(t){var o;if(super(t),t.type!==vt||"style"!==t.name||(null===(o=t.strings)||void 0===o?void 0:o.length)>2)throw Error("The `styleMap` directive must be used in the `style` attribute and must be the only part in the attribute.")}render(t){return Object.keys(t).reduce(((o,e)=>{const r=t[e];return null==r?o:o+`${e=e.includes("-")?e:e.replace(/(?:^(webkit|moz|ms|o)|)(?=[A-Z])/g,"-$&").toLowerCase()}:${r};`}),"")}update(t,[o]){const{style:e}=t.element;if(void 0===this.ut){this.ut=new Set;for(const t in o)this.ut.add(t);return this.render(o)}this.ut.forEach((t=>{null==o[t]&&(this.ut.delete(t),t.includes("-")?e.removeProperty(t):e[t]="")}));for(const t in o){const r=o[t];if(null!=r){this.ut.add(t);const o="string"==typeof r&&r.endsWith(At);t.includes("-")||o?e.setProperty(t,o?r.slice(0,-11):r,o?Bt:""):e[t]=r}}return _}});var Zt=Object.freeze({__proto__:null,styleMap:jt});
|
|
101
101
|
/**
|
|
102
102
|
* @license
|
|
103
103
|
* Copyright 2017 Google LLC
|
|
104
104
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
105
|
-
*/class
|
|
105
|
+
*/class Pt extends Ct{constructor(t){if(super(t),this.et=H,t.type!==St)throw Error(this.constructor.directiveName+"() can only be used in child bindings")}render(t){if(t===H||null==t)return this.ft=void 0,this.et=t;if(t===_)return t;if("string"!=typeof t)throw Error(this.constructor.directiveName+"() called with a non-string value");if(t===this.et)return this.ft;this.et=t;const o=[t];return o.raw=o,this.ft={_$litType$:this.constructor.resultType,strings:o,values:[]}}}Pt.directiveName="unsafeHTML",Pt.resultType=1;const Dt=Nt(Pt);var zt=Object.freeze({__proto__:null,UnsafeHTMLDirective:Pt,unsafeHTML:Dt});
|
|
106
106
|
/**
|
|
107
107
|
* @license
|
|
108
108
|
* Copyright (c) 2020 The Polymer Project Authors. All rights reserved.
|
|
@@ -117,7 +117,7 @@ var bt;const yt=null!=(null===(bt=window.HTMLSlotElement)||void 0===bt?void 0:bt
|
|
|
117
117
|
* http://polymer.github.io/PATENTS.txt
|
|
118
118
|
*
|
|
119
119
|
* @see https://github.com/webcomponents/polyfills/tree/master/packages/scoped-custom-element-registry
|
|
120
|
-
*/if(!ShadowRoot.prototype.createElement){const t=window.HTMLElement,e=window.customElements.define,n=window.customElements.get,r=window.customElements,i=new WeakMap,o=new WeakMap,s=new WeakMap,u=new WeakMap;let c;window.CustomElementRegistry=class{constructor(){this._definitionsByTag=new Map,this._definitionsByClass=new Map,this._whenDefinedPromises=new Map,this._awaitingUpgrade=new Map}define(t,i){if(t=t.toLowerCase(),void 0!==this._getDefinition(t))throw new DOMException(`Failed to execute 'define' on 'CustomElementRegistry': the name "${t}" has already been used with this registry`);if(void 0!==this._definitionsByClass.get(i))throw new DOMException("Failed to execute 'define' on 'CustomElementRegistry': this constructor has already been used with this registry");const u=i.prototype.attributeChangedCallback,c=new Set(i.observedAttributes||[]);h(i,c,u);const a={elementClass:i,connectedCallback:i.prototype.connectedCallback,disconnectedCallback:i.prototype.disconnectedCallback,adoptedCallback:i.prototype.adoptedCallback,attributeChangedCallback:u,formAssociated:i.formAssociated,formAssociatedCallback:i.prototype.formAssociatedCallback,formDisabledCallback:i.prototype.formDisabledCallback,formResetCallback:i.prototype.formResetCallback,formStateRestoreCallback:i.prototype.formStateRestoreCallback,observedAttributes:c};this._definitionsByTag.set(t,a),this._definitionsByClass.set(i,a);let l=n.call(r,t);l||(l=f(t),e.call(r,t,l)),this===window.customElements&&(s.set(i,a),a.standInClass=l);const d=this._awaitingUpgrade.get(t);if(d){this._awaitingUpgrade.delete(t);for(const t of d)o.delete(t),v(t,a,!0)}const p=this._whenDefinedPromises.get(t);return void 0!==p&&(p.resolve(i),this._whenDefinedPromises.delete(t)),i}upgrade(){b.push(this),r.upgrade.apply(r,arguments),b.pop()}get(t){const e=this._definitionsByTag.get(t);return e?.elementClass}_getDefinition(t){return this._definitionsByTag.get(t)}whenDefined(t){const e=this._getDefinition(t);if(void 0!==e)return Promise.resolve(e.elementClass);let n=this._whenDefinedPromises.get(t);return void 0===n&&(n={},n.promise=new Promise((t=>n.resolve=t)),this._whenDefinedPromises.set(t,n)),n.promise}_upgradeWhenDefined(t,e,n){let r=this._awaitingUpgrade.get(e);r||this._awaitingUpgrade.set(e,r=new Set),n?r.add(t):r.delete(t)}},window.HTMLElement=function(){let e=c;if(e)return c=void 0,e;const n=s.get(this.constructor);if(!n)throw new TypeError("Illegal constructor (custom element class must be registered with global customElements registry to be newable)");return e=Reflect.construct(t,[],n.standInClass),Object.setPrototypeOf(e,this.constructor.prototype),i.set(e,n),e},window.HTMLElement.prototype=t.prototype;const a=t=>t===document||t instanceof ShadowRoot,l=t=>{let e=t.getRootNode();if(!a(e)){const t=b[b.length-1];if(t instanceof CustomElementRegistry)return t;e=t.getRootNode(),a(e)||(e=u.get(e)?.getRootNode()||document)}return e.customElements},f=e=>class{static get formAssociated(){return!0}constructor(){const n=Reflect.construct(t,[],this.constructor);Object.setPrototypeOf(n,HTMLElement.prototype);const r=l(n)||window.customElements,i=r._getDefinition(e);return i?v(n,i):o.set(n,r),n}connectedCallback(){const t=i.get(this);t?t.connectedCallback&&t.connectedCallback.apply(this,arguments):o.get(this)._upgradeWhenDefined(this,e,!0)}disconnectedCallback(){const t=i.get(this);t?t.disconnectedCallback&&t.disconnectedCallback.apply(this,arguments):o.get(this)._upgradeWhenDefined(this,e,!1)}adoptedCallback(){const t=i.get(this);t?.adoptedCallback?.apply(this,arguments)}formAssociatedCallback(){const t=i.get(this);t&&t.formAssociated&&t?.formAssociatedCallback?.apply(this,arguments)}formDisabledCallback(){const t=i.get(this);t?.formAssociated&&t?.formDisabledCallback?.apply(this,arguments)}formResetCallback(){const t=i.get(this);t?.formAssociated&&t?.formResetCallback?.apply(this,arguments)}formStateRestoreCallback(){const t=i.get(this);t?.formAssociated&&t?.formStateRestoreCallback?.apply(this,arguments)}},h=(t,e,n)=>{if(0===e.size||void 0===n)return;const r=t.prototype.setAttribute;r&&(t.prototype.setAttribute=function(t,i){const o=t.toLowerCase();if(e.has(o)){const t=this.getAttribute(o);r.call(this,o,i),n.call(this,o,t,i)}else r.call(this,o,i)});const i=t.prototype.removeAttribute;i&&(t.prototype.removeAttribute=function(t){const r=t.toLowerCase();if(e.has(r)){const t=this.getAttribute(r);i.call(this,r),n.call(this,r,t,null)}else i.call(this,r)})},d=e=>{const n=Object.getPrototypeOf(e);if(n!==window.HTMLElement)return n===t||"HTMLElement"===n?.prototype?.constructor?.name?Object.setPrototypeOf(e,window.HTMLElement):d(n)},v=(t,e,n=!1)=>{Object.setPrototypeOf(t,e.elementClass.prototype),i.set(t,e),c=t;try{new e.elementClass}catch(t){d(e.elementClass),new e.elementClass}e.observedAttributes.forEach((n=>{t.hasAttribute(n)&&e.attributeChangedCallback.call(t,n,null,t.getAttribute(n))})),n&&e.connectedCallback&&t.isConnected&&e.connectedCallback.call(t)},p=Element.prototype.attachShadow;Element.prototype.attachShadow=function(t){const e=p.apply(this,arguments);return t.customElements&&(e.customElements=t.customElements),e};let b=[document];const y=(t,e,n=void 0)=>{const r=(n?Object.getPrototypeOf(n):t.prototype)[e];t.prototype[e]=function(){b.push(this);const t=r.apply(n||this,arguments);return void 0!==t&&u.set(t,this),b.pop(),t}};y(ShadowRoot,"createElement",document),y(ShadowRoot,"importNode",document),y(Element,"insertAdjacentHTML");const m=(t,e)=>{const n=Object.getOwnPropertyDescriptor(t.prototype,e);Object.defineProperty(t.prototype,e,{...n,set(t){b.push(this),n.set.call(this,t),b.pop()}})};if(m(Element,"innerHTML"),m(ShadowRoot,"innerHTML"),Object.defineProperty(window,"customElements",{value:new CustomElementRegistry,configurable:!0,writable:!0}),window.ElementInternals&&window.ElementInternals.prototype.setFormValue){const t=new WeakMap,e=HTMLElement.prototype.attachInternals,n=["setFormValue","setValidity","checkValidity","reportValidity"];HTMLElement.prototype.attachInternals=function(...n){const r=e.call(this,...n);return t.set(r,this),r},n.forEach((e=>{const n=window.ElementInternals.prototype,r=n[e];n[e]=function(...e){const n=t.get(this);if(!0!==i.get(n).formAssociated)throw new DOMException(`Failed to execute ${r} on 'ElementInternals': The target element is not a form-associated custom element.`);r?.call(this,...e)}}));class r extends Array{constructor(t){super(...t),this._elements=t}get value(){return this._elements.find((t=>!0===t.checked))?.value||""}}class o{constructor(t){const e=new Map;t.forEach(((t,n)=>{const r=t.getAttribute("name"),i=e.get(r)||[];this[+n]=t,i.push(t),e.set(r,i)})),this.length=t.length,e.forEach(((t,e)=>{t&&(1===t.length?this[e]=t[0]:this[e]=new r(t))}))}namedItem(t){return this[t]}}const s=Object.getOwnPropertyDescriptor(HTMLFormElement.prototype,"elements");Object.defineProperty(HTMLFormElement.prototype,"elements",{get:function(){const t=s.get.call(this,[]),e=[];for(const n of t){const t=i.get(n);t&&!0!==t.formAssociated||e.push(n)}return new o(e)}})}}try{window.customElements.define("custom-element",null)}catch(Dt){const t=window.customElements.define;window.customElements.define=(e,n,r)=>{if(null!==n)try{t.bind(window.customElements)(e,n,r)}catch(t){console.info(e,n,r,t)}}}class Wt extends Error{constructor(t,e,n){super(t),this.canceledPromiseResult=e,this.canceledPromiseError=n}}class qt extends Promise{constructor(t){super(((e,n)=>t((t=>{this.isCanceled?n(new Wt("Promise has been canceled",t)):e(t)}),(t=>{this.isCanceled?n(new Wt("Promise has been canceled",void 0,t)):n(t)})))),this.isCanceled=!1}cancel(){this.isCanceled=!0}}const Kt=t=>new qt(((e,n)=>t.then(e).catch(n)));class Ht{constructor(t=0){this.timeout=t,this.callbacks=[]}run(t,e){return this.callbacks=[t],this.debounce(e)}queue(t,e){return this.callbacks.push(t),this.debounce(e)}cancel(){this.clearTimeout(),this.resolvePromise&&this.resolvePromise(!1),this.clearPromise()}debounce(t){return null==this.promise&&(this.promise=new Promise(((t,e)=>{this.resolvePromise=t,this.rejectPromise=e}))),this.clearTimeout(),this._debounce=window.setTimeout((()=>this.runCallbacks()),null!=t?t:this.timeout),this.promise}async runCallbacks(){var t,e;const n=[...this.callbacks];this.callbacks=[];const r=null!==(t=this.rejectPromise)&&void 0!==t?t:()=>null,i=null!==(e=this.resolvePromise)&&void 0!==e?e:()=>null;this.clearPromise();for(let t of n)try{await t()}catch(t){return void r(t)}i(!0)}clearTimeout(){null!=this._debounce&&window.clearTimeout(this._debounce)}clearPromise(){this.promise=void 0,this.resolvePromise=void 0,this.rejectPromise=void 0}}function Vt(t){return t.match(/^\d{4}-\d{2}-\d{2}$/)&&(t=t.replace(/-/g,"/")),t=t.replace(" ","T").replace(/^(.+)(\+\d{2})(\d{2})$/,((t,e,n,r)=>e+n+":"+r)),new Date(t)}function zt(t,e){try{return function(t,e){if(t===e)return!0;if(t&&e&&"object"==typeof t&&"object"==typeof e){if(t.constructor!==e.constructor)return!1;var n,r,i;if(Array.isArray(t)){if((n=t.length)!=e.length)return!1;for(r=n;0!=r--;)if(!zt(t[r],e[r]))return!1;return!0}if(t instanceof Map&&e instanceof Map){if(t.size!==e.size)return!1;for(r of t.entries())if(!e.has(r[0]))return!1;for(r of t.entries())if(!zt(r[1],e.get(r[0])))return!1;return!0}if(t instanceof Set&&e instanceof Set){if(t.size!==e.size)return!1;for(r of t.entries())if(!e.has(r[0]))return!1;return!0}if(t.constructor===RegExp)return t.source===e.source&&t.flags===e.flags;if(t.valueOf!==Object.prototype.valueOf)return t.valueOf()===e.valueOf();if((n=(i=Object.keys(t)).length)!==Object.keys(e).length)return!1;for(r=n;0!=r--;)if(!Object.prototype.hasOwnProperty.call(e,i[r]))return!1;for(r=n;0!=r--;){var o=i[r];if(!zt(t[o],e[o]))return!1}return!0}return t!=t&&e!=e}(t,e)}catch(t){return!1}}function Jt(t,e){const n=()=>JSON.parse(JSON.stringify(t));return vt({type:Object,converter:{fromAttribute:t=>{if(null==t)return n();try{return JSON.parse(t)}catch{return n()}},toAttribute:t=>JSON.stringify(t)},hasChanged:(t,e)=>!zt(t,e),...null!=e?e:{}})}class Zt{static create(t,e,n){let r=t=>s(null!=t?t:n),i=u`var(${s(t)}, ${r(n)})`;return i.name=t,i.category=e,i.defaultValue=n,i.defaultCssValue=r,i.get=e=>u`var(${s(t)}, ${r(e)})`,i.breadcrumb=()=>[],i.lastResortDefaultValue=()=>n,i}static extend(t,e,n){let r=t=>e.get(null!=t?t:n),i=u`var(${s(t)}, ${r(n)})`;return i.name=t,i.category=e.category,i.fallbackVariable=e,i.defaultValue=n,i.defaultCssValue=r,i.get=e=>u`var(${s(t)}, ${r(e)})`,i.breadcrumb=()=>[e.name,...e.breadcrumb()],i.lastResortDefaultValue=()=>n,i}static external(t,e){let n=e=>t.fallbackVariable?t.fallbackVariable.get(null!=e?e:t.defaultValue):s(null!=e?e:t.defaultValue),r=u`var(${s(t.name)}, ${n(t.defaultValue)})`;return r.name=t.name,r.category=t.category,r.fallbackVariable=t.fallbackVariable,r.defaultValue=t.defaultValue,r.context=e,r.defaultCssValue=n,r.get=e=>u`var(${s(t.name)}, ${n(e)})`,r.breadcrumb=()=>t.fallbackVariable?[t.fallbackVariable.name,...t.fallbackVariable.breadcrumb()]:[],r.lastResortDefaultValue=()=>{var e,n;return null!==(e=t.defaultValue)&&void 0!==e?e:null===(n=t.fallbackVariable)||void 0===n?void 0:n.lastResortDefaultValue()},r}}const Xt={colorPrimary:Zt.create("--ft-color-primary","COLOR","#2196F3"),colorPrimaryVariant:Zt.create("--ft-color-primary-variant","COLOR","#1976D2"),colorSecondary:Zt.create("--ft-color-secondary","COLOR","#FFCC80"),colorSecondaryVariant:Zt.create("--ft-color-secondary-variant","COLOR","#F57C00"),colorSurface:Zt.create("--ft-color-surface","COLOR","#FFFFFF"),colorContent:Zt.create("--ft-color-content","COLOR","rgba(0, 0, 0, 0.87)"),colorError:Zt.create("--ft-color-error","COLOR","#B00020"),colorOutline:Zt.create("--ft-color-outline","COLOR","rgba(0, 0, 0, 0.14)"),colorOpacityHigh:Zt.create("--ft-color-opacity-high","NUMBER","1"),colorOpacityMedium:Zt.create("--ft-color-opacity-medium","NUMBER","0.74"),colorOpacityDisabled:Zt.create("--ft-color-opacity-disabled","NUMBER","0.38"),colorOnPrimary:Zt.create("--ft-color-on-primary","COLOR","#FFFFFF"),colorOnPrimaryHigh:Zt.create("--ft-color-on-primary-high","COLOR","#FFFFFF"),colorOnPrimaryMedium:Zt.create("--ft-color-on-primary-medium","COLOR","rgba(255, 255, 255, 0.74)"),colorOnPrimaryDisabled:Zt.create("--ft-color-on-primary-disabled","COLOR","rgba(255, 255, 255, 0.38)"),colorOnSecondary:Zt.create("--ft-color-on-secondary","COLOR","#FFFFFF"),colorOnSecondaryHigh:Zt.create("--ft-color-on-secondary-high","COLOR","#FFFFFF"),colorOnSecondaryMedium:Zt.create("--ft-color-on-secondary-medium","COLOR","rgba(255, 255, 255, 0.74)"),colorOnSecondaryDisabled:Zt.create("--ft-color-on-secondary-disabled","COLOR","rgba(255, 255, 255, 0.38)"),colorOnSurface:Zt.create("--ft-color-on-surface","COLOR","rgba(0, 0, 0, 0.87)"),colorOnSurfaceHigh:Zt.create("--ft-color-on-surface-high","COLOR","rgba(0, 0, 0, 0.87)"),colorOnSurfaceMedium:Zt.create("--ft-color-on-surface-medium","COLOR","rgba(0, 0, 0, 0.60)"),colorOnSurfaceDisabled:Zt.create("--ft-color-on-surface-disabled","COLOR","rgba(0, 0, 0, 0.38)"),opacityContentOnSurfaceDisabled:Zt.create("--ft-opacity-content-on-surface-disabled","NUMBER","0"),opacityContentOnSurfaceEnable:Zt.create("--ft-opacity-content-on-surface-enable","NUMBER","0"),opacityContentOnSurfaceHover:Zt.create("--ft-opacity-content-on-surface-hover","NUMBER","0.04"),opacityContentOnSurfaceFocused:Zt.create("--ft-opacity-content-on-surface-focused","NUMBER","0.12"),opacityContentOnSurfacePressed:Zt.create("--ft-opacity-content-on-surface-pressed","NUMBER","0.10"),opacityContentOnSurfaceSelected:Zt.create("--ft-opacity-content-on-surface-selected","NUMBER","0.08"),opacityContentOnSurfaceDragged:Zt.create("--ft-opacity-content-on-surface-dragged","NUMBER","0.08"),opacityPrimaryOnSurfaceDisabled:Zt.create("--ft-opacity-primary-on-surface-disabled","NUMBER","0"),opacityPrimaryOnSurfaceEnable:Zt.create("--ft-opacity-primary-on-surface-enable","NUMBER","0"),opacityPrimaryOnSurfaceHover:Zt.create("--ft-opacity-primary-on-surface-hover","NUMBER","0.04"),opacityPrimaryOnSurfaceFocused:Zt.create("--ft-opacity-primary-on-surface-focused","NUMBER","0.12"),opacityPrimaryOnSurfacePressed:Zt.create("--ft-opacity-primary-on-surface-pressed","NUMBER","0.10"),opacityPrimaryOnSurfaceSelected:Zt.create("--ft-opacity-primary-on-surface-selected","NUMBER","0.08"),opacityPrimaryOnSurfaceDragged:Zt.create("--ft-opacity-primary-on-surface-dragged","NUMBER","0.08"),opacitySurfaceOnPrimaryDisabled:Zt.create("--ft-opacity-surface-on-primary-disabled","NUMBER","0"),opacitySurfaceOnPrimaryEnable:Zt.create("--ft-opacity-surface-on-primary-enable","NUMBER","0"),opacitySurfaceOnPrimaryHover:Zt.create("--ft-opacity-surface-on-primary-hover","NUMBER","0.04"),opacitySurfaceOnPrimaryFocused:Zt.create("--ft-opacity-surface-on-primary-focused","NUMBER","0.12"),opacitySurfaceOnPrimaryPressed:Zt.create("--ft-opacity-surface-on-primary-pressed","NUMBER","0.10"),opacitySurfaceOnPrimarySelected:Zt.create("--ft-opacity-surface-on-primary-selected","NUMBER","0.08"),opacitySurfaceOnPrimaryDragged:Zt.create("--ft-opacity-surface-on-primary-dragged","NUMBER","0.08"),elevation00:Zt.create("--ft-elevation-00","UNKNOWN","0px 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px 0px rgba(0, 0, 0, 0)"),elevation01:Zt.create("--ft-elevation-01","UNKNOWN","0px 1px 4px 0px rgba(0, 0, 0, 0.06), 0px 1px 2px 0px rgba(0, 0, 0, 0.14), 0px 0px 1px 0px rgba(0, 0, 0, 0.06)"),elevation02:Zt.create("--ft-elevation-02","UNKNOWN","0px 4px 10px 0px rgba(0, 0, 0, 0.06), 0px 2px 5px 0px rgba(0, 0, 0, 0.14), 0px 0px 1px 0px rgba(0, 0, 0, 0.06)"),elevation03:Zt.create("--ft-elevation-03","UNKNOWN","0px 6px 13px 0px rgba(0, 0, 0, 0.06), 0px 3px 7px 0px rgba(0, 0, 0, 0.14), 0px 1px 2px 0px rgba(0, 0, 0, 0.06)"),elevation04:Zt.create("--ft-elevation-04","UNKNOWN","0px 8px 16px 0px rgba(0, 0, 0, 0.06), 0px 4px 9px 0px rgba(0, 0, 0, 0.14), 0px 2px 3px 0px rgba(0, 0, 0, 0.06)"),elevation06:Zt.create("--ft-elevation-06","UNKNOWN","0px 12px 22px 0px rgba(0, 0, 0, 0.06), 0px 6px 13px 0px rgba(0, 0, 0, 0.14), 0px 4px 5px 0px rgba(0, 0, 0, 0.06)"),elevation08:Zt.create("--ft-elevation-08","UNKNOWN","0px 16px 28px 0px rgba(0, 0, 0, 0.06), 0px 8px 17px 0px rgba(0, 0, 0, 0.14), 0px 6px 7px 0px rgba(0, 0, 0, 0.06)"),elevation12:Zt.create("--ft-elevation-12","UNKNOWN","0px 22px 40px 0px rgba(0, 0, 0, 0.06), 0px 12px 23px 0px rgba(0, 0, 0, 0.14), 0px 10px 11px 0px rgba(0, 0, 0, 0.06)"),elevation16:Zt.create("--ft-elevation-16","UNKNOWN","0px 28px 52px 0px rgba(0, 0, 0, 0.06), 0px 16px 29px 0px rgba(0, 0, 0, 0.14), 0px 14px 15px 0px rgba(0, 0, 0, 0.06)"),elevation24:Zt.create("--ft-elevation-24","UNKNOWN","0px 40px 76px 0px rgba(0, 0, 0, 0.06), 0px 24px 41px 0px rgba(0, 0, 0, 0.14), 0px 22px 23px 0px rgba(0, 0, 0, 0.06)"),borderRadiusS:Zt.create("--ft-border-radius-S","SIZE","4px"),borderRadiusM:Zt.create("--ft-border-radius-M","SIZE","8px"),borderRadiusL:Zt.create("--ft-border-radius-L","SIZE","12px"),borderRadiusXL:Zt.create("--ft-border-radius-XL","SIZE","16px"),titleFont:Zt.create("--ft-title-font","UNKNOWN","Ubuntu, system-ui, sans-serif"),contentFont:Zt.create("--ft-content-font","UNKNOWN","'Open Sans', system-ui, sans-serif"),transitionDuration:Zt.create("--ft-transition-duration","UNKNOWN","250ms"),transitionTimingFunction:Zt.create("--ft-transition-timing-function","UNKNOWN","ease-in-out")};class Gt extends CustomEvent{constructor(t){super("ft-notification",{bubbles:!0,composed:!0,detail:t})}}class Qt extends Event{constructor(){super("ft-pre-resize",{composed:!0,bubbles:!0})}}class Yt extends Event{constructor(){super("ft-post-resize",{composed:!0,bubbles:!0})}}class te extends lt{createRenderRoot(){const t=this.constructor;t.elementDefinitions&&!t.registry&&(t.registry=new CustomElementRegistry,Object.entries(t.elementDefinitions).forEach((([e,n])=>t.registry.define(e,n))));const e={...t.shadowRootOptions,customElements:t.registry},n=this.renderOptions.creationScope=this.attachShadow(e);return c(n,t.elementStyles),n}}var ee,ne=function(t,e,n,r){for(var i,o=arguments.length,s=o<3?e:null===r?r=Object.getOwnPropertyDescriptor(e,n):r,u=t.length-1;u>=0;u--)(i=t[u])&&(s=(o<3?i(s):o>3?i(e,n,s):i(e,n))||s);return o>3&&s&&Object.defineProperty(e,n,s),s};const re=Symbol("constructorPrototype"),ie=Symbol("constructorName"),oe=Symbol("exportpartsDebouncer");class se extends te{constructor(){super(),this[ee]=new Ht(5),this[ie]=this.constructor.name,this[re]=this.constructor.prototype}adoptedCallback(){this.constructor.name!==this[ie]&&Object.setPrototypeOf(this,this[re])}updated(t){super.updated(t),setTimeout((()=>{this.contentAvailableCallback(t),this.scheduleExportpartsUpdate()}),0)}contentAvailableCallback(t){var e,n;if((null!==(n=null===(e=this.shadowRoot)||void 0===e?void 0:e.querySelectorAll(".ft-lit-element--custom-stylesheet"))&&void 0!==n?n:[]).forEach((t=>t.remove())),this.customStylesheet){const t=document.createElement("style");t.classList.add("ft-lit-element--custom-stylesheet"),t.innerHTML=this.customStylesheet,this.shadowRoot.append(t)}}scheduleExportpartsUpdate(){this[oe].run((()=>{var t;(null===(t=this.exportpartsPrefix)||void 0===t?void 0:t.trim())?this.setExportpartsAttribute([this.exportpartsPrefix]):null!=this.exportpartsPrefixes&&this.exportpartsPrefixes.length>0&&this.setExportpartsAttribute(this.exportpartsPrefixes)}))}setExportpartsAttribute(t){var e,n,r,i,o,s;const u=t=>null!=t&&t.trim().length>0,c=t.filter(u).map((t=>t.trim()));if(0===c.length)return void this.removeAttribute("exportparts");const a=new Set;for(let t of null!==(n=null===(e=this.shadowRoot)||void 0===e?void 0:e.querySelectorAll("[part],[exportparts]"))&&void 0!==n?n:[]){const e=null!==(i=null===(r=t.getAttribute("part"))||void 0===r?void 0:r.split(" "))&&void 0!==i?i:[],n=null!==(s=null===(o=t.getAttribute("exportparts"))||void 0===o?void 0:o.split(",").map((t=>t.split(":")[1])))&&void 0!==s?s:[];new Array(...e,...n).filter(u).map((t=>t.trim())).forEach((t=>a.add(t)))}if(0===a.size)return void this.removeAttribute("exportparts");const l=[...a.values()].flatMap((t=>c.map((e=>`${t}:${e}--${t}`))));this.setAttribute("exportparts",[...this.part,...l].join(", "))}}ee=oe,ne([vt()],se.prototype,"exportpartsPrefix",void 0),ne([Jt([])],se.prototype,"exportpartsPrefixes",void 0),ne([vt()],se.prototype,"customStylesheet",void 0);const ue=u`
|
|
120
|
+
*/if(!ShadowRoot.prototype.createElement){const t=window.HTMLElement,o=window.customElements.define,e=window.customElements.get,r=window.customElements,n=new WeakMap,i=new WeakMap,a=new WeakMap,c=new WeakMap;let l;window.CustomElementRegistry=class{constructor(){this._definitionsByTag=new Map,this._definitionsByClass=new Map,this._whenDefinedPromises=new Map,this._awaitingUpgrade=new Map}define(t,n){if(t=t.toLowerCase(),void 0!==this._getDefinition(t))throw new DOMException(`Failed to execute 'define' on 'CustomElementRegistry': the name "${t}" has already been used with this registry`);if(void 0!==this._definitionsByClass.get(n))throw new DOMException("Failed to execute 'define' on 'CustomElementRegistry': this constructor has already been used with this registry");const c=n.prototype.attributeChangedCallback,l=new Set(n.observedAttributes||[]);d(n,l,c);const s={elementClass:n,connectedCallback:n.prototype.connectedCallback,disconnectedCallback:n.prototype.disconnectedCallback,adoptedCallback:n.prototype.adoptedCallback,attributeChangedCallback:c,formAssociated:n.formAssociated,formAssociatedCallback:n.prototype.formAssociatedCallback,formDisabledCallback:n.prototype.formDisabledCallback,formResetCallback:n.prototype.formResetCallback,formStateRestoreCallback:n.prototype.formStateRestoreCallback,observedAttributes:l};this._definitionsByTag.set(t,s),this._definitionsByClass.set(n,s);let f=e.call(r,t);f||(f=u(t),o.call(r,t,f)),this===window.customElements&&(a.set(n,s),s.standInClass=f);const p=this._awaitingUpgrade.get(t);if(p){this._awaitingUpgrade.delete(t);for(const t of p)i.delete(t),h(t,s,!0)}const y=this._whenDefinedPromises.get(t);return void 0!==y&&(y.resolve(n),this._whenDefinedPromises.delete(t)),n}upgrade(){g.push(this),r.upgrade.apply(r,arguments),g.pop()}get(t){const o=this._definitionsByTag.get(t);return o?.elementClass}_getDefinition(t){return this._definitionsByTag.get(t)}whenDefined(t){const o=this._getDefinition(t);if(void 0!==o)return Promise.resolve(o.elementClass);let e=this._whenDefinedPromises.get(t);return void 0===e&&(e={},e.promise=new Promise((t=>e.resolve=t)),this._whenDefinedPromises.set(t,e)),e.promise}_upgradeWhenDefined(t,o,e){let r=this._awaitingUpgrade.get(o);r||this._awaitingUpgrade.set(o,r=new Set),e?r.add(t):r.delete(t)}},window.HTMLElement=function(){let o=l;if(o)return l=void 0,o;const e=a.get(this.constructor);if(!e)throw new TypeError("Illegal constructor (custom element class must be registered with global customElements registry to be newable)");return o=Reflect.construct(t,[],e.standInClass),Object.setPrototypeOf(o,this.constructor.prototype),n.set(o,e),o},window.HTMLElement.prototype=t.prototype;const s=t=>t===document||t instanceof ShadowRoot,f=t=>{let o=t.getRootNode();if(!s(o)){const t=g[g.length-1];if(t instanceof CustomElementRegistry)return t;o=t.getRootNode(),s(o)||(o=c.get(o)?.getRootNode()||document)}return o.customElements},u=o=>class{static get formAssociated(){return!0}constructor(){const e=Reflect.construct(t,[],this.constructor);Object.setPrototypeOf(e,HTMLElement.prototype);const r=f(e)||window.customElements,n=r._getDefinition(o);return n?h(e,n):i.set(e,r),e}connectedCallback(){const t=n.get(this);t?t.connectedCallback&&t.connectedCallback.apply(this,arguments):i.get(this)._upgradeWhenDefined(this,o,!0)}disconnectedCallback(){const t=n.get(this);t?t.disconnectedCallback&&t.disconnectedCallback.apply(this,arguments):i.get(this)._upgradeWhenDefined(this,o,!1)}adoptedCallback(){const t=n.get(this);t?.adoptedCallback?.apply(this,arguments)}formAssociatedCallback(){const t=n.get(this);t&&t.formAssociated&&t?.formAssociatedCallback?.apply(this,arguments)}formDisabledCallback(){const t=n.get(this);t?.formAssociated&&t?.formDisabledCallback?.apply(this,arguments)}formResetCallback(){const t=n.get(this);t?.formAssociated&&t?.formResetCallback?.apply(this,arguments)}formStateRestoreCallback(){const t=n.get(this);t?.formAssociated&&t?.formStateRestoreCallback?.apply(this,arguments)}},d=(t,o,e)=>{if(0===o.size||void 0===e)return;const r=t.prototype.setAttribute;r&&(t.prototype.setAttribute=function(t,n){const i=t.toLowerCase();if(o.has(i)){const t=this.getAttribute(i);r.call(this,i,n),e.call(this,i,t,n)}else r.call(this,i,n)});const n=t.prototype.removeAttribute;n&&(t.prototype.removeAttribute=function(t){const r=t.toLowerCase();if(o.has(r)){const t=this.getAttribute(r);n.call(this,r),e.call(this,r,t,null)}else n.call(this,r)})},p=o=>{const e=Object.getPrototypeOf(o);if(e!==window.HTMLElement)return e===t||"HTMLElement"===e?.prototype?.constructor?.name?Object.setPrototypeOf(o,window.HTMLElement):p(e)},h=(t,o,e=!1)=>{Object.setPrototypeOf(t,o.elementClass.prototype),n.set(t,o),l=t;try{new o.elementClass}catch(t){p(o.elementClass),new o.elementClass}o.observedAttributes.forEach((e=>{t.hasAttribute(e)&&o.attributeChangedCallback.call(t,e,null,t.getAttribute(e))})),e&&o.connectedCallback&&t.isConnected&&o.connectedCallback.call(t)},y=Element.prototype.attachShadow;Element.prototype.attachShadow=function(t){const o=y.apply(this,arguments);return t.customElements&&(o.customElements=t.customElements),o};let g=[document];const b=(t,o,e=void 0)=>{const r=(e?Object.getPrototypeOf(e):t.prototype)[o];t.prototype[o]=function(){g.push(this);const t=r.apply(e||this,arguments);return void 0!==t&&c.set(t,this),g.pop(),t}};b(ShadowRoot,"createElement",document),b(ShadowRoot,"importNode",document),b(Element,"insertAdjacentHTML");const m=(t,o)=>{const e=Object.getOwnPropertyDescriptor(t.prototype,o);Object.defineProperty(t.prototype,o,{...e,set(t){g.push(this),e.set.call(this,t),g.pop()}})};if(m(Element,"innerHTML"),m(ShadowRoot,"innerHTML"),Object.defineProperty(window,"customElements",{value:new CustomElementRegistry,configurable:!0,writable:!0}),window.ElementInternals&&window.ElementInternals.prototype.setFormValue){const t=new WeakMap,o=HTMLElement.prototype.attachInternals,e=["setFormValue","setValidity","checkValidity","reportValidity"];HTMLElement.prototype.attachInternals=function(...e){const r=o.call(this,...e);return t.set(r,this),r},e.forEach((o=>{const e=window.ElementInternals.prototype,r=e[o];e[o]=function(...o){const e=t.get(this);if(!0!==n.get(e).formAssociated)throw new DOMException(`Failed to execute ${r} on 'ElementInternals': The target element is not a form-associated custom element.`);r?.call(this,...o)}}));class r extends Array{constructor(t){super(...t),this._elements=t}get value(){return this._elements.find((t=>!0===t.checked))?.value||""}}class i{constructor(t){const o=new Map;t.forEach(((t,e)=>{const r=t.getAttribute("name"),n=o.get(r)||[];this[+e]=t,n.push(t),o.set(r,n)})),this.length=t.length,o.forEach(((t,o)=>{t&&(1===t.length?this[o]=t[0]:this[o]=new r(t))}))}namedItem(t){return this[t]}}const a=Object.getOwnPropertyDescriptor(HTMLFormElement.prototype,"elements");Object.defineProperty(HTMLFormElement.prototype,"elements",{get:function(){const t=a.get.call(this,[]),o=[];for(const e of t){const t=n.get(e);t&&!0!==t.formAssociated||o.push(e)}return new i(o)}})}}try{window.customElements.define("custom-element",null)}catch(Pt){const t=window.customElements.define;window.customElements.define=(o,e,r)=>{if(null!==e)try{t.bind(window.customElements)(o,e,r)}catch(t){console.info(o,e,r,t)}}}class Mt extends Error{constructor(t,o,e){super(t),this.canceledPromiseResult=o,this.canceledPromiseError=e}}class _t extends Promise{constructor(t){super(((o,e)=>t((t=>{this.isCanceled?e(new Mt("Promise has been canceled",t)):o(t)}),(t=>{this.isCanceled?e(new Mt("Promise has been canceled",void 0,t)):e(t)})))),this.isCanceled=!1}cancel(){this.isCanceled=!0}}const Ht=t=>new _t(((o,e)=>t.then(o).catch(e)));class $t{constructor(t=0){this.timeout=t,this.callbacks=[]}run(t,o){return this.callbacks=[t],this.debounce(o)}queue(t,o){return this.callbacks.push(t),this.debounce(o)}cancel(){this.clearTimeout(),this.resolvePromise&&this.resolvePromise(!1),this.clearPromise()}debounce(t){return null==this.promise&&(this.promise=new Promise(((t,o)=>{this.resolvePromise=t,this.rejectPromise=o}))),this.clearTimeout(),this._debounce=window.setTimeout((()=>this.runCallbacks()),null!=t?t:this.timeout),this.promise}async runCallbacks(){var t,o;const e=[...this.callbacks];this.callbacks=[];const r=null!==(t=this.rejectPromise)&&void 0!==t?t:()=>null,n=null!==(o=this.resolvePromise)&&void 0!==o?o:()=>null;this.clearPromise();for(let t of e)try{await t()}catch(t){return void r(t)}n(!0)}clearTimeout(){null!=this._debounce&&window.clearTimeout(this._debounce)}clearPromise(){this.promise=void 0,this.resolvePromise=void 0,this.rejectPromise=void 0}}function Tt(t){return t.match(/^\d{4}-\d{2}-\d{2}$/)&&(t=t.replace(/-/g,"/")),t=t.replace(" ","T").replace(/^(.+)(\+\d{2})(\d{2})$/,((t,o,e,r)=>o+e+":"+r)),new Date(t)}function Gt(t,o){try{return function(t,o){if(t===o)return!0;if(t&&o&&"object"==typeof t&&"object"==typeof o){if(t.constructor!==o.constructor)return!1;var e,r,n;if(Array.isArray(t)){if((e=t.length)!=o.length)return!1;for(r=e;0!=r--;)if(!Gt(t[r],o[r]))return!1;return!0}if(t instanceof Map&&o instanceof Map){if(t.size!==o.size)return!1;for(r of t.entries())if(!o.has(r[0]))return!1;for(r of t.entries())if(!Gt(r[1],o.get(r[0])))return!1;return!0}if(t instanceof Set&&o instanceof Set){if(t.size!==o.size)return!1;for(r of t.entries())if(!o.has(r[0]))return!1;return!0}if(t.constructor===RegExp)return t.source===o.source&&t.flags===o.flags;if(t.valueOf!==Object.prototype.valueOf)return t.valueOf()===o.valueOf();if((e=(n=Object.keys(t)).length)!==Object.keys(o).length)return!1;for(r=e;0!=r--;)if(!Object.prototype.hasOwnProperty.call(o,n[r]))return!1;for(r=e;0!=r--;){var i=n[r];if(!Gt(t[i],o[i]))return!1}return!0}return t!=t&&o!=o}(t,o)}catch(t){return!1}}function Vt(t,o){const e=()=>JSON.parse(JSON.stringify(t));return ht({type:Object,converter:{fromAttribute:t=>{if(null==t)return e();try{return JSON.parse(t)}catch{return e()}},toAttribute:t=>JSON.stringify(t)},hasChanged:(t,o)=>!Gt(t,o),...null!=o?o:{}})}const qt=t=>"string"==typeof t?a(t):t;class Yt{static create(t,o,e,r){const n=t=>qt(null!=t?t:r),i=c`var(${qt(t)}, ${n(r)})`;return i.name=t,i.description=t,i.category=e,i.defaultValue=r,i.defaultCssValue=n,i.get=o=>c`var(${qt(t)}, ${n(o)})`,i.breadcrumb=()=>[],i.lastResortDefaultValue=()=>r,i}static extend(t,o,e,r){const n=t=>e.get(null!=t?t:r),i=c`var(${qt(t)}, ${n(r)})`;return i.name=t,i.description=o,i.category=e.category,i.fallbackVariable=e,i.defaultValue=r,i.defaultCssValue=n,i.get=o=>c`var(${qt(t)}, ${n(o)})`,i.breadcrumb=()=>[e.name,...e.breadcrumb()],i.lastResortDefaultValue=()=>null!=r?r:e.lastResortDefaultValue(),i}static external(t,o){const e=o=>t.fallbackVariable?t.fallbackVariable.get(null!=o?o:t.defaultValue):qt(null!=o?o:t.lastResortDefaultValue()),r=c`var(${qt(t.name)}, ${e(t.defaultValue)})`;return r.name=t.name,r.category=t.category,r.fallbackVariable=t.fallbackVariable,r.defaultValue=t.defaultValue,r.context=o,r.defaultCssValue=e,r.get=o=>c`var(${qt(t.name)}, ${e(o)})`,r.breadcrumb=()=>t.fallbackVariable?[t.fallbackVariable.name,...t.fallbackVariable.breadcrumb()]:[],r.lastResortDefaultValue=()=>t.lastResortDefaultValue(),r}}const Jt={colorWhite:Yt.create("--ft-color-white","","COLOR","#ffffff"),colorGray0:Yt.create("--ft-color-gray-0","","COLOR","#71718e"),colorGray10:Yt.create("--ft-color-gray-10","","COLOR","#fbfbfc"),colorGray20:Yt.create("--ft-color-gray-20","","COLOR","#f2f2f5"),colorGray30:Yt.create("--ft-color-gray-30","","COLOR","#e9e9ed"),colorGray40:Yt.create("--ft-color-gray-40","","COLOR","#e0e0e6"),colorGray50:Yt.create("--ft-color-gray-50","","COLOR","#cdcdd7"),colorGray60:Yt.create("--ft-color-gray-60","","COLOR","#bbbbc9"),colorGray70:Yt.create("--ft-color-gray-70","","COLOR","#a8a8ba"),colorGray80:Yt.create("--ft-color-gray-80","","COLOR","#9696ab"),colorGray90:Yt.create("--ft-color-gray-90","","COLOR","#83839d"),colorGray100:Yt.create("--ft-color-gray-100","","COLOR","#62627c"),colorGray200:Yt.create("--ft-color-gray-200","","COLOR","#545469"),colorGray300:Yt.create("--ft-color-gray-300","","COLOR","#454557"),colorGray400:Yt.create("--ft-color-gray-400","","COLOR","#363644"),colorGray500:Yt.create("--ft-color-gray-500","","COLOR","#282832"),colorGray600:Yt.create("--ft-color-gray-600","","COLOR","#19191f"),colorGray700:Yt.create("--ft-color-gray-700","","COLOR","#0a0a0d"),colorBrand0:Yt.create("--ft-color-brand-0","","COLOR","#9d207b"),colorBrand10:Yt.create("--ft-color-brand-10","","COLOR","#f7edf4"),colorBrand20:Yt.create("--ft-color-brand-20","","COLOR","#ebcfe4"),colorBrand30:Yt.create("--ft-color-brand-30","","COLOR","#dfb2d3"),colorBrand40:Yt.create("--ft-color-brand-40","","COLOR","#d395c2"),colorBrand50:Yt.create("--ft-color-brand-50","","COLOR","#c778b1"),colorBrand60:Yt.create("--ft-color-brand-60","","COLOR","#ba5ba1"),colorBrand70:Yt.create("--ft-color-brand-70","","COLOR","#ae3e90"),colorBrand100:Yt.create("--ft-color-brand-100","","COLOR","#8d1d6e"),colorBrand200:Yt.create("--ft-color-brand-200","","COLOR","#78185e"),colorBrand300:Yt.create("--ft-color-brand-300","","COLOR","#62144d"),colorBrand400:Yt.create("--ft-color-brand-400","","COLOR","#4d103c"),colorBrand500:Yt.create("--ft-color-brand-500","","COLOR","#380b2c"),colorBrand600:Yt.create("--ft-color-brand-600","","COLOR","#23071b"),colorBrand700:Yt.create("--ft-color-brand-700","","COLOR","#0d030b"),colorCyan0:Yt.create("--ft-color-cyan-0","","COLOR","#0e98b4"),colorCyan10:Yt.create("--ft-color-cyan-10","","COLOR","#ebf6f9"),colorCyan20:Yt.create("--ft-color-cyan-20","","COLOR","#cbe9ef"),colorCyan30:Yt.create("--ft-color-cyan-30","","COLOR","#acdbe5"),colorCyan40:Yt.create("--ft-color-cyan-40","","COLOR","#8ccedb"),colorCyan50:Yt.create("--ft-color-cyan-50","","COLOR","#6dc0d1"),colorCyan60:Yt.create("--ft-color-cyan-60","","COLOR","#4db3c8"),colorCyan70:Yt.create("--ft-color-cyan-70","","COLOR","#2ea5be"),colorCyan100:Yt.create("--ft-color-cyan-100","","COLOR","#0c849c"),colorCyan200:Yt.create("--ft-color-cyan-200","","COLOR","#0a7085"),colorCyan300:Yt.create("--ft-color-cyan-300","","COLOR","#085c6d"),colorCyan400:Yt.create("--ft-color-cyan-400","","COLOR","#074856"),colorCyan500:Yt.create("--ft-color-cyan-500","","COLOR","#05343e"),colorCyan600:Yt.create("--ft-color-cyan-600","","COLOR","#032127"),colorCyan700:Yt.create("--ft-color-cyan-700","","COLOR","#010d0f"),colorGreen0:Yt.create("--ft-color-green-0","","COLOR","#21a274"),colorGreen10:Yt.create("--ft-color-green-10","","COLOR","#edf7f3"),colorGreen20:Yt.create("--ft-color-green-20","","COLOR","#cfebe1"),colorGreen30:Yt.create("--ft-color-green-30","","COLOR","#b2dfcf"),colorGreen40:Yt.create("--ft-color-green-40","","COLOR","#95d3bd"),colorGreen50:Yt.create("--ft-color-green-50","","COLOR","#78c7ab"),colorGreen60:Yt.create("--ft-color-green-60","","COLOR","#5bba98"),colorGreen70:Yt.create("--ft-color-green-70","","COLOR","#3eae86"),colorGreen100:Yt.create("--ft-color-green-100","","COLOR","#1d8d65"),colorGreen200:Yt.create("--ft-color-green-200","","COLOR","#187856"),colorGreen300:Yt.create("--ft-color-green-300","","COLOR","#146246"),colorGreen400:Yt.create("--ft-color-green-400","","COLOR","#104d37"),colorGreen500:Yt.create("--ft-color-green-500","","COLOR","#0b3828"),colorGreen600:Yt.create("--ft-color-green-600","","COLOR","#072319"),colorGreen700:Yt.create("--ft-color-green-700","","COLOR","#030d0a"),colorOrange0:Yt.create("--ft-color-orange-0","","COLOR","#ee8d17"),colorOrange10:Yt.create("--ft-color-orange-10","","COLOR","#fef6ec"),colorOrange20:Yt.create("--ft-color-orange-20","","COLOR","#fbe7cd"),colorOrange30:Yt.create("--ft-color-orange-30","","COLOR","#f9d8af"),colorOrange40:Yt.create("--ft-color-orange-40","","COLOR","#f7c991"),colorOrange50:Yt.create("--ft-color-orange-50","","COLOR","#f5ba72"),colorOrange60:Yt.create("--ft-color-orange-60","","COLOR","#f2ab54"),colorOrange70:Yt.create("--ft-color-orange-70","","COLOR","#f09c35"),colorOrange100:Yt.create("--ft-color-orange-100","","COLOR","#cf7b14"),colorOrange200:Yt.create("--ft-color-orange-200","","COLOR","#b06811"),colorOrange300:Yt.create("--ft-color-orange-300","","COLOR","#90560e"),colorOrange400:Yt.create("--ft-color-orange-400","","COLOR","#71430b"),colorOrange500:Yt.create("--ft-color-orange-500","","COLOR","#523108"),colorOrange600:Yt.create("--ft-color-orange-600","","COLOR","#331e05"),colorOrange700:Yt.create("--ft-color-orange-700","","COLOR","#140c02"),colorRed0:Yt.create("--ft-color-red-0","","COLOR","#b40e2c"),colorRed10:Yt.create("--ft-color-red-10","","COLOR","#f9ebed"),colorRed20:Yt.create("--ft-color-red-20","","COLOR","#efcbd2"),colorRed30:Yt.create("--ft-color-red-30","","COLOR","#e5acb6"),colorRed40:Yt.create("--ft-color-red-40","","COLOR","#db8c9b"),colorRed50:Yt.create("--ft-color-red-50","","COLOR","#d16d7f"),colorRed60:Yt.create("--ft-color-red-60","","COLOR","#c84d63"),colorRed70:Yt.create("--ft-color-red-70","","COLOR","#be2e48"),colorRed100:Yt.create("--ft-color-red-100","","COLOR","#9c0c26"),colorRed200:Yt.create("--ft-color-red-200","","COLOR","#850a20"),colorRed300:Yt.create("--ft-color-red-300","","COLOR","#6d081b"),colorRed400:Yt.create("--ft-color-red-400","","COLOR","#560715"),colorRed500:Yt.create("--ft-color-red-500","","COLOR","#3e050f"),colorRed600:Yt.create("--ft-color-red-600","","COLOR","#270309"),colorRed700:Yt.create("--ft-color-red-700","","COLOR","#0f0104"),colorYellow0:Yt.create("--ft-color-yellow-0","","COLOR","#E4C00C"),colorYellow10:Yt.create("--ft-color-yellow-10","","COLOR","#fefae9"),colorYellow20:Yt.create("--ft-color-yellow-20","","COLOR","#fcf4ca"),colorYellow30:Yt.create("--ft-color-yellow-30","","COLOR","#faedaa"),colorYellow40:Yt.create("--ft-color-yellow-40","","COLOR","#f9e78b"),colorYellow50:Yt.create("--ft-color-yellow-50","","COLOR","#f7e06b"),colorYellow60:Yt.create("--ft-color-yellow-60","","COLOR","#F4D63E"),colorYellow70:Yt.create("--ft-color-yellow-70","","COLOR","#F3CE16"),colorYellow100:Yt.create("--ft-color-yellow-100","","COLOR","#d3b10b"),colorYellow200:Yt.create("--ft-color-yellow-200","","COLOR","#b3970a"),colorYellow300:Yt.create("--ft-color-yellow-300","","COLOR","#947c08"),colorYellow400:Yt.create("--ft-color-yellow-400","","COLOR","#746206"),colorYellow500:Yt.create("--ft-color-yellow-500","","COLOR","#554705"),colorYellow600:Yt.create("--ft-color-yellow-600","","COLOR","#352d03"),colorYellow700:Yt.create("--ft-color-yellow-700","","COLOR","#161201"),colorUltramarine0:Yt.create("--ft-color-ultramarine-0","","COLOR","#3C19E5"),colorUltramarine10:Yt.create("--ft-color-ultramarine-10","","COLOR","#EDEAFD"),colorUltramarine20:Yt.create("--ft-color-ultramarine-20","","COLOR","#D4CCF9"),colorUltramarine30:Yt.create("--ft-color-ultramarine-30","","COLOR","#BBAFF6"),colorUltramarine40:Yt.create("--ft-color-ultramarine-40","","COLOR","#A191F3"),colorUltramarine50:Yt.create("--ft-color-ultramarine-50","","COLOR","#8873EF"),colorUltramarine60:Yt.create("--ft-color-ultramarine-60","","COLOR","#6F55EC"),colorUltramarine70:Yt.create("--ft-color-ultramarine-70","","COLOR","#5537E8"),colorUltramarine100:Yt.create("--ft-color-ultramarine-100","","COLOR","#3416C7"),colorUltramarine200:Yt.create("--ft-color-ultramarine-200","","COLOR","#2C13A9"),colorUltramarine300:Yt.create("--ft-color-ultramarine-300","","COLOR","#250F8C"),colorUltramarine400:Yt.create("--ft-color-ultramarine-400","","COLOR","#1D0C6E"),colorUltramarine500:Yt.create("--ft-color-ultramarine-500","","COLOR","#150950"),colorUltramarine600:Yt.create("--ft-color-ultramarine-600","","COLOR","#0D0532"),colorUltramarine700:Yt.create("--ft-color-ultramarine-700","","COLOR","#050215"),colorAvocado0:Yt.create("--ft-color-avocado-0","","COLOR","#98BD28"),colorAvocado10:Yt.create("--ft-color-avocado-10","","COLOR","#F6F9EC"),colorAvocado20:Yt.create("--ft-color-avocado-20","","COLOR","#E8F0D0"),colorAvocado30:Yt.create("--ft-color-avocado-30","","COLOR","#DBE8B4"),colorAvocado40:Yt.create("--ft-color-avocado-40","","COLOR","#CEDF98"),colorAvocado50:Yt.create("--ft-color-avocado-50","","COLOR","#C0D77C"),colorAvocado60:Yt.create("--ft-color-avocado-60","","COLOR","#B3CE60"),colorAvocado70:Yt.create("--ft-color-avocado-70","","COLOR","#A5C644"),colorAvocado100:Yt.create("--ft-color-avocado-100","","COLOR","#84A423"),colorAvocado200:Yt.create("--ft-color-avocado-200","","COLOR","#708C1E"),colorAvocado300:Yt.create("--ft-color-avocado-300","","COLOR","#5D7318"),colorAvocado400:Yt.create("--ft-color-avocado-400","","COLOR","#495B13"),colorAvocado500:Yt.create("--ft-color-avocado-500","","COLOR","#35420E"),colorAvocado600:Yt.create("--ft-color-avocado-600","","COLOR","#212A09"),colorAvocado700:Yt.create("--ft-color-avocado-700","","COLOR","#0E1104"),colorBrown0:Yt.create("--ft-color-brown-0","","COLOR","#B26F4D"),colorBrown10:Yt.create("--ft-color-brown-10","","COLOR","#F8F2EF"),colorBrown20:Yt.create("--ft-color-brown-20","","COLOR","#EEDFD8"),colorBrown30:Yt.create("--ft-color-brown-30","","COLOR","#E4CDC1"),colorBrown40:Yt.create("--ft-color-brown-40","","COLOR","#DABAAA"),colorBrown50:Yt.create("--ft-color-brown-50","","COLOR","#D0A792"),colorBrown60:Yt.create("--ft-color-brown-60","","COLOR","#C6947B"),colorBrown70:Yt.create("--ft-color-brown-70","","COLOR","#BC8264"),colorBrown100:Yt.create("--ft-color-brown-100","","COLOR","#9B6143"),colorBrown200:Yt.create("--ft-color-brown-200","","COLOR","#845239"),colorBrown300:Yt.create("--ft-color-brown-300","","COLOR","#6D442F"),colorBrown400:Yt.create("--ft-color-brown-400","","COLOR","#553525"),colorBrown500:Yt.create("--ft-color-brown-500","","COLOR","#3E271B"),colorBrown600:Yt.create("--ft-color-brown-600","","COLOR","#271811"),colorBrown700:Yt.create("--ft-color-brown-700","","COLOR","#100A07"),spacing1:Yt.create("--ft-spacing-1","","SIZE","0.25rem"),spacing2:Yt.create("--ft-spacing-2","","SIZE","calc(var(--ft-spacing-2, 0.25rem)*2)"),spacing3:Yt.create("--ft-spacing-3","","SIZE","calc(var(--ft-spacing-3, 0.25rem)*3)"),spacing4:Yt.create("--ft-spacing-4","","SIZE","calc(var(--ft-spacing-4, 0.25rem)*4)"),spacing5:Yt.create("--ft-spacing-5","","SIZE","calc(var(--ft-spacing-5, 0.25rem)*5)"),spacing6:Yt.create("--ft-spacing-6","","SIZE","calc(var(--ft-spacing-6, 0.25rem)*6)"),spacing8:Yt.create("--ft-spacing-8","","SIZE","calc(var(--ft-spacing-8, 0.25rem)*8)"),spacing10:Yt.create("--ft-spacing-10","","SIZE","calc(var(--ft-spacing-10, 0.25rem)*10)"),spacing12:Yt.create("--ft-spacing-12","","SIZE","calc(var(--ft-spacing-12, 0.25rem)*12)"),spacing16:Yt.create("--ft-spacing-16","","SIZE","calc(var(--ft-spacing-16, 0.25rem)*16)"),spacing20:Yt.create("--ft-spacing-20","","SIZE","calc(var(--ft-spacing-20, 0.25rem)*20)"),spacing24:Yt.create("--ft-spacing-24","","SIZE","calc(var(--ft-spacing-24, 0.25rem)*24)"),spacing28:Yt.create("--ft-spacing-28","","SIZE","calc(var(--ft-spacing-28, 0.25rem)*28)"),spacing32:Yt.create("--ft-spacing-32","","SIZE","calc(var(--ft-spacing-32, 0.25rem)*32)"),spacing05:Yt.create("--ft-spacing-0-5","","SIZE","calc(var(--ft-spacing-0-5, 0.25rem)*0.5)"),borderRadiusS:Yt.create("--ft-border-radius-s","","SIZE","4px"),borderRadiusM:Yt.create("--ft-border-radius-m","","SIZE","8px"),borderRadiusL:Yt.create("--ft-border-radius-l","","SIZE","12px"),borderRadiusXl:Yt.create("--ft-border-radius-xl","","SIZE","16px"),borderRadiusPill:Yt.create("--ft-border-radius-pill","","SIZE","999px"),borderRadiusRound:Yt.create("--ft-border-radius-round","","SIZE","50%"),iconSize1:Yt.create("--ft-icon-size-1","","SIZE","12px"),iconSize2:Yt.create("--ft-icon-size-2","","SIZE","16px"),iconSize3:Yt.create("--ft-icon-size-3","","SIZE","20px"),iconSize4:Yt.create("--ft-icon-size-4","","SIZE","24px"),iconSize5:Yt.create("--ft-icon-size-5","","SIZE","32px"),iconSize6:Yt.create("--ft-icon-size-6","","SIZE","48px"),opacity0:Yt.create("--ft-opacity-0","","NUMBER","0"),opacity8:Yt.create("--ft-opacity-8","","NUMBER","0.08"),opacity16:Yt.create("--ft-opacity-16","","NUMBER","0.16"),opacity24:Yt.create("--ft-opacity-24","","NUMBER","0.24"),opacity40:Yt.create("--ft-opacity-40","","NUMBER","0.4"),opacity80:Yt.create("--ft-opacity-80","","NUMBER","0.8")},Xt={fontFamily:Yt.create("--ft-typography-display-fontFamily","","UNKNOWN","Inter"),fontWeight:Yt.create("--ft-typography-display-fontWeight","","UNKNOWN","600"),lineHeight:Yt.create("--ft-typography-display-lineHeight","","SIZE","120%"),fontSize:Yt.create("--ft-typography-display-fontSize","","SIZE","2.5rem"),letterSpacing:Yt.create("--ft-typography-display-letterSpacing","","SIZE","-0.02em"),paragraphSpacing:Yt.create("--ft-typography-display-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:Yt.create("--ft-typography-display-paragraphIndent","","UNKNOWN","0"),textDecoration:Yt.create("--ft-typography-display-textDecoration","","UNKNOWN","none"),textCase:Yt.create("--ft-typography-display-textCase","","UNKNOWN","none")},Qt={fontFamily:Yt.create("--ft-typography-title-1-fontFamily","","UNKNOWN","Inter"),fontWeight:Yt.create("--ft-typography-title-1-fontWeight","","UNKNOWN","600"),lineHeight:Yt.create("--ft-typography-title-1-lineHeight","","SIZE","120%"),fontSize:Yt.create("--ft-typography-title-1-fontSize","","SIZE","2rem"),letterSpacing:Yt.create("--ft-typography-title-1-letterSpacing","","SIZE","-0.02em"),paragraphSpacing:Yt.create("--ft-typography-title-1-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:Yt.create("--ft-typography-title-1-paragraphIndent","","UNKNOWN","0"),textDecoration:Yt.create("--ft-typography-title-1-textDecoration","","UNKNOWN","none"),textCase:Yt.create("--ft-typography-title-1-textCase","","UNKNOWN","none")},to={fontFamily:Yt.create("--ft-typography-title-2-fontFamily","","UNKNOWN","Inter"),fontWeight:Yt.create("--ft-typography-title-2-fontWeight","","UNKNOWN","600"),lineHeight:Yt.create("--ft-typography-title-2-lineHeight","","SIZE","120%"),fontSize:Yt.create("--ft-typography-title-2-fontSize","","SIZE","1.5rem"),letterSpacing:Yt.create("--ft-typography-title-2-letterSpacing","","SIZE","-0.02em"),paragraphSpacing:Yt.create("--ft-typography-title-2-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:Yt.create("--ft-typography-title-2-paragraphIndent","","UNKNOWN","0"),textDecoration:Yt.create("--ft-typography-title-2-textDecoration","","UNKNOWN","none"),textCase:Yt.create("--ft-typography-title-2-textCase","","UNKNOWN","none")},oo={fontFamily:Yt.create("--ft-typography-title-3-fontFamily","","UNKNOWN","Inter"),fontWeight:Yt.create("--ft-typography-title-3-fontWeight","","UNKNOWN","600"),lineHeight:Yt.create("--ft-typography-title-3-lineHeight","","SIZE","120%"),fontSize:Yt.create("--ft-typography-title-3-fontSize","","SIZE","1.25rem"),letterSpacing:Yt.create("--ft-typography-title-3-letterSpacing","","SIZE","-0.01em"),paragraphSpacing:Yt.create("--ft-typography-title-3-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:Yt.create("--ft-typography-title-3-paragraphIndent","","UNKNOWN","0"),textDecoration:Yt.create("--ft-typography-title-3-textDecoration","","UNKNOWN","none"),textCase:Yt.create("--ft-typography-title-3-textCase","","UNKNOWN","none")},eo={fontFamily:Yt.create("--ft-typography-body-1-regular-fontFamily","","UNKNOWN","Inter"),fontWeight:Yt.create("--ft-typography-body-1-regular-fontWeight","","UNKNOWN","400"),lineHeight:Yt.create("--ft-typography-body-1-regular-lineHeight","","SIZE","135%"),fontSize:Yt.create("--ft-typography-body-1-regular-fontSize","","SIZE","1rem"),letterSpacing:Yt.create("--ft-typography-body-1-regular-letterSpacing","","SIZE","normal"),paragraphSpacing:Yt.create("--ft-typography-body-1-regular-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:Yt.create("--ft-typography-body-1-regular-paragraphIndent","","UNKNOWN","0"),textDecoration:Yt.create("--ft-typography-body-1-regular-textDecoration","","UNKNOWN","none"),textCase:Yt.create("--ft-typography-body-1-regular-textCase","","UNKNOWN","none")},ro={fontFamily:Yt.create("--ft-typography-body-1-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:Yt.create("--ft-typography-body-1-medium-fontWeight","","UNKNOWN","500"),lineHeight:Yt.create("--ft-typography-body-1-medium-lineHeight","","SIZE","135%"),fontSize:Yt.create("--ft-typography-body-1-medium-fontSize","","SIZE","1rem"),letterSpacing:Yt.create("--ft-typography-body-1-medium-letterSpacing","","SIZE","normal"),paragraphSpacing:Yt.create("--ft-typography-body-1-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:Yt.create("--ft-typography-body-1-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:Yt.create("--ft-typography-body-1-medium-textDecoration","","UNKNOWN","none"),textCase:Yt.create("--ft-typography-body-1-medium-textCase","","UNKNOWN","none")},no={fontFamily:Yt.create("--ft-typography-body-1-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:Yt.create("--ft-typography-body-1-semibold-fontWeight","","UNKNOWN","600"),lineHeight:Yt.create("--ft-typography-body-1-semibold-lineHeight","","SIZE","135%"),fontSize:Yt.create("--ft-typography-body-1-semibold-fontSize","","SIZE","1rem"),letterSpacing:Yt.create("--ft-typography-body-1-semibold-letterSpacing","","SIZE","normal"),paragraphSpacing:Yt.create("--ft-typography-body-1-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:Yt.create("--ft-typography-body-1-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:Yt.create("--ft-typography-body-1-semibold-textDecoration","","UNKNOWN","none"),textCase:Yt.create("--ft-typography-body-1-semibold-textCase","","UNKNOWN","none")},io={fontFamily:Yt.create("--ft-typography-body-2-regular-fontFamily","","UNKNOWN","Inter"),fontWeight:Yt.create("--ft-typography-body-2-regular-fontWeight","","UNKNOWN","400"),lineHeight:Yt.create("--ft-typography-body-2-regular-lineHeight","","SIZE","135%"),fontSize:Yt.create("--ft-typography-body-2-regular-fontSize","","SIZE","0.875rem"),letterSpacing:Yt.create("--ft-typography-body-2-regular-letterSpacing","","SIZE","normal"),paragraphSpacing:Yt.create("--ft-typography-body-2-regular-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:Yt.create("--ft-typography-body-2-regular-paragraphIndent","","UNKNOWN","0"),textDecoration:Yt.create("--ft-typography-body-2-regular-textDecoration","","UNKNOWN","none"),textCase:Yt.create("--ft-typography-body-2-regular-textCase","","UNKNOWN","none")},ao={fontFamily:Yt.create("--ft-typography-body-2-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:Yt.create("--ft-typography-body-2-medium-fontWeight","","UNKNOWN","500"),lineHeight:Yt.create("--ft-typography-body-2-medium-lineHeight","","SIZE","135%"),fontSize:Yt.create("--ft-typography-body-2-medium-fontSize","","SIZE","0.875rem"),letterSpacing:Yt.create("--ft-typography-body-2-medium-letterSpacing","","SIZE","normal"),paragraphSpacing:Yt.create("--ft-typography-body-2-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:Yt.create("--ft-typography-body-2-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:Yt.create("--ft-typography-body-2-medium-textDecoration","","UNKNOWN","none"),textCase:Yt.create("--ft-typography-body-2-medium-textCase","","UNKNOWN","none")},co={fontFamily:Yt.create("--ft-typography-body-2-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:Yt.create("--ft-typography-body-2-semibold-fontWeight","","UNKNOWN","600"),lineHeight:Yt.create("--ft-typography-body-2-semibold-lineHeight","","SIZE","135%"),fontSize:Yt.create("--ft-typography-body-2-semibold-fontSize","","SIZE","0.875rem"),letterSpacing:Yt.create("--ft-typography-body-2-semibold-letterSpacing","","SIZE","normal"),paragraphSpacing:Yt.create("--ft-typography-body-2-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:Yt.create("--ft-typography-body-2-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:Yt.create("--ft-typography-body-2-semibold-textDecoration","","UNKNOWN","none"),textCase:Yt.create("--ft-typography-body-2-semibold-textCase","","UNKNOWN","none")},lo={fontFamily:Yt.create("--ft-typography-label-1-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:Yt.create("--ft-typography-label-1-medium-fontWeight","","UNKNOWN","500"),lineHeight:Yt.create("--ft-typography-label-1-medium-lineHeight","","SIZE","110%"),fontSize:Yt.create("--ft-typography-label-1-medium-fontSize","","SIZE","0.875rem"),letterSpacing:Yt.create("--ft-typography-label-1-medium-letterSpacing","","SIZE","0.04em"),textCase:Yt.create("--ft-typography-label-1-medium-textCase","","UNKNOWN","uppercase"),paragraphSpacing:Yt.create("--ft-typography-label-1-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:Yt.create("--ft-typography-label-1-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:Yt.create("--ft-typography-label-1-medium-textDecoration","","UNKNOWN","none")},so={fontFamily:Yt.create("--ft-typography-label-1-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:Yt.create("--ft-typography-label-1-semibold-fontWeight","","UNKNOWN","600"),lineHeight:Yt.create("--ft-typography-label-1-semibold-lineHeight","","SIZE","110%"),fontSize:Yt.create("--ft-typography-label-1-semibold-fontSize","","SIZE","0.875rem"),letterSpacing:Yt.create("--ft-typography-label-1-semibold-letterSpacing","","SIZE","0.04em"),textCase:Yt.create("--ft-typography-label-1-semibold-textCase","","UNKNOWN","uppercase"),paragraphSpacing:Yt.create("--ft-typography-label-1-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:Yt.create("--ft-typography-label-1-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:Yt.create("--ft-typography-label-1-semibold-textDecoration","","UNKNOWN","none")},fo={fontFamily:Yt.create("--ft-typography-label-1-bold-fontFamily","","UNKNOWN","Inter"),fontWeight:Yt.create("--ft-typography-label-1-bold-fontWeight","","UNKNOWN","700"),lineHeight:Yt.create("--ft-typography-label-1-bold-lineHeight","","SIZE","110%"),fontSize:Yt.create("--ft-typography-label-1-bold-fontSize","","SIZE","0.875rem"),letterSpacing:Yt.create("--ft-typography-label-1-bold-letterSpacing","","SIZE","0.04em"),textCase:Yt.create("--ft-typography-label-1-bold-textCase","","UNKNOWN","uppercase"),paragraphSpacing:Yt.create("--ft-typography-label-1-bold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:Yt.create("--ft-typography-label-1-bold-paragraphIndent","","UNKNOWN","0"),textDecoration:Yt.create("--ft-typography-label-1-bold-textDecoration","","UNKNOWN","none")},uo={fontFamily:Yt.create("--ft-typography-label-2-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:Yt.create("--ft-typography-label-2-medium-fontWeight","","UNKNOWN","500"),lineHeight:Yt.create("--ft-typography-label-2-medium-lineHeight","","SIZE","110%"),fontSize:Yt.create("--ft-typography-label-2-medium-fontSize","","SIZE","0.75rem"),letterSpacing:Yt.create("--ft-typography-label-2-medium-letterSpacing","","SIZE","0.04em"),textCase:Yt.create("--ft-typography-label-2-medium-textCase","","UNKNOWN","uppercase"),paragraphSpacing:Yt.create("--ft-typography-label-2-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:Yt.create("--ft-typography-label-2-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:Yt.create("--ft-typography-label-2-medium-textDecoration","","UNKNOWN","none")},po={fontFamily:Yt.create("--ft-typography-label-2-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:Yt.create("--ft-typography-label-2-semibold-fontWeight","","UNKNOWN","600"),lineHeight:Yt.create("--ft-typography-label-2-semibold-lineHeight","","SIZE","110%"),fontSize:Yt.create("--ft-typography-label-2-semibold-fontSize","","SIZE","0.75rem"),letterSpacing:Yt.create("--ft-typography-label-2-semibold-letterSpacing","","SIZE","0.04em"),textCase:Yt.create("--ft-typography-label-2-semibold-textCase","","UNKNOWN","uppercase"),paragraphSpacing:Yt.create("--ft-typography-label-2-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:Yt.create("--ft-typography-label-2-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:Yt.create("--ft-typography-label-2-semibold-textDecoration","","UNKNOWN","none")},ho={fontFamily:Yt.create("--ft-typography-label-2-bold-fontFamily","","UNKNOWN","Inter"),fontWeight:Yt.create("--ft-typography-label-2-bold-fontWeight","","UNKNOWN","700"),lineHeight:Yt.create("--ft-typography-label-2-bold-lineHeight","","SIZE","110%"),fontSize:Yt.create("--ft-typography-label-2-bold-fontSize","","SIZE","0.75rem"),letterSpacing:Yt.create("--ft-typography-label-2-bold-letterSpacing","","SIZE","0.04em"),textCase:Yt.create("--ft-typography-label-2-bold-textCase","","UNKNOWN","uppercase"),paragraphSpacing:Yt.create("--ft-typography-label-2-bold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:Yt.create("--ft-typography-label-2-bold-paragraphIndent","","UNKNOWN","0"),textDecoration:Yt.create("--ft-typography-label-2-bold-textDecoration","","UNKNOWN","none")},yo={fontFamily:Yt.create("--ft-typography-caption-1-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:Yt.create("--ft-typography-caption-1-medium-fontWeight","","UNKNOWN","500"),lineHeight:Yt.create("--ft-typography-caption-1-medium-lineHeight","","SIZE","130%"),fontSize:Yt.create("--ft-typography-caption-1-medium-fontSize","","SIZE","0.75rem"),letterSpacing:Yt.create("--ft-typography-caption-1-medium-letterSpacing","","SIZE","normal"),textCase:Yt.create("--ft-typography-caption-1-medium-textCase","","UNKNOWN","none"),paragraphSpacing:Yt.create("--ft-typography-caption-1-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:Yt.create("--ft-typography-caption-1-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:Yt.create("--ft-typography-caption-1-medium-textDecoration","","UNKNOWN","none")},go={fontFamily:Yt.create("--ft-typography-caption-1-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:Yt.create("--ft-typography-caption-1-semibold-fontWeight","","UNKNOWN","600"),lineHeight:Yt.create("--ft-typography-caption-1-semibold-lineHeight","","SIZE","130%"),fontSize:Yt.create("--ft-typography-caption-1-semibold-fontSize","","SIZE","0.75rem"),letterSpacing:Yt.create("--ft-typography-caption-1-semibold-letterSpacing","","SIZE","normal"),textCase:Yt.create("--ft-typography-caption-1-semibold-textCase","","UNKNOWN","none"),paragraphSpacing:Yt.create("--ft-typography-caption-1-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:Yt.create("--ft-typography-caption-1-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:Yt.create("--ft-typography-caption-1-semibold-textDecoration","","UNKNOWN","none")},bo={fontFamily:Yt.create("--ft-typography-caption-1-bold-fontFamily","","UNKNOWN","Inter"),fontWeight:Yt.create("--ft-typography-caption-1-bold-fontWeight","","UNKNOWN","700"),lineHeight:Yt.create("--ft-typography-caption-1-bold-lineHeight","","SIZE","130%"),fontSize:Yt.create("--ft-typography-caption-1-bold-fontSize","","SIZE","0.75rem"),letterSpacing:Yt.create("--ft-typography-caption-1-bold-letterSpacing","","SIZE","normal"),textCase:Yt.create("--ft-typography-caption-1-bold-textCase","","UNKNOWN","none"),paragraphSpacing:Yt.create("--ft-typography-caption-1-bold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:Yt.create("--ft-typography-caption-1-bold-paragraphIndent","","UNKNOWN","0"),textDecoration:Yt.create("--ft-typography-caption-1-bold-textDecoration","","UNKNOWN","none")},mo={fontFamily:Yt.create("--ft-typography-caption-2-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:Yt.create("--ft-typography-caption-2-medium-fontWeight","","UNKNOWN","500"),lineHeight:Yt.create("--ft-typography-caption-2-medium-lineHeight","","SIZE","130%"),fontSize:Yt.create("--ft-typography-caption-2-medium-fontSize","","SIZE","0.6875rem"),letterSpacing:Yt.create("--ft-typography-caption-2-medium-letterSpacing","","SIZE","normal"),textCase:Yt.create("--ft-typography-caption-2-medium-textCase","","UNKNOWN","none"),paragraphSpacing:Yt.create("--ft-typography-caption-2-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:Yt.create("--ft-typography-caption-2-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:Yt.create("--ft-typography-caption-2-medium-textDecoration","","UNKNOWN","none")},Oo={fontFamily:Yt.create("--ft-typography-caption-2-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:Yt.create("--ft-typography-caption-2-semibold-fontWeight","","UNKNOWN","600"),lineHeight:Yt.create("--ft-typography-caption-2-semibold-lineHeight","","SIZE","130%"),fontSize:Yt.create("--ft-typography-caption-2-semibold-fontSize","","SIZE","0.6875rem"),letterSpacing:Yt.create("--ft-typography-caption-2-semibold-letterSpacing","","SIZE","normal"),textCase:Yt.create("--ft-typography-caption-2-semibold-textCase","","UNKNOWN","none"),paragraphSpacing:Yt.create("--ft-typography-caption-2-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:Yt.create("--ft-typography-caption-2-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:Yt.create("--ft-typography-caption-2-semibold-textDecoration","","UNKNOWN","none")},vo={fontFamily:Yt.create("--ft-typography-caption-2-bold-fontFamily","","UNKNOWN","Inter"),fontWeight:Yt.create("--ft-typography-caption-2-bold-fontWeight","","UNKNOWN","700"),lineHeight:Yt.create("--ft-typography-caption-2-bold-lineHeight","","SIZE","130%"),fontSize:Yt.create("--ft-typography-caption-2-bold-fontSize","","SIZE","0.6875rem"),letterSpacing:Yt.create("--ft-typography-caption-2-bold-letterSpacing","","SIZE","normal"),textCase:Yt.create("--ft-typography-caption-2-bold-textCase","","UNKNOWN","none"),paragraphSpacing:Yt.create("--ft-typography-caption-2-bold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:Yt.create("--ft-typography-caption-2-bold-paragraphIndent","","UNKNOWN","0"),textDecoration:Yt.create("--ft-typography-caption-2-bold-textDecoration","","UNKNOWN","none")},So={display:Xt,"title-1":Qt,"title-2":to,"title-3":oo,"body-1-regular":eo,"body-1-medium":ro,"body-1-semibold":no,"body-2-regular":io,"body-2-medium":ao,"body-2-semibold":co,"label-1-medium":lo,"label-1-semibold":so,"label-1-bold":fo,"label-2-medium":uo,"label-2-semibold":po,"label-2-bold":ho,"caption-1-medium":yo,"caption-1-semibold":go,"caption-1-bold":bo,"caption-2-medium":mo,"caption-2-semibold":Oo,"caption-2-bold":vo},No={backgroundActionPrimary:Yt.extend("--ft-background-action-primary","Used as backgorund of primary action components.",Jt.colorBrand0),backgroundErrorPrimary:Yt.extend("--ft-background-error-primary","Used as background of error components.",Jt.colorRed0),backgroundErrorSubtle:Yt.extend("--ft-background-error-subtle","Used as background of subtle error components.",Jt.colorRed10),backgroundInfoPrimary:Yt.extend("--ft-background-info-primary","Used as background of information components.",Jt.colorCyan200),backgroundInfoSubtle:Yt.extend("--ft-background-info-subtle","Used as background of subtle information components.",Jt.colorCyan10),backgroundWarningPrimary:Yt.extend("--ft-background-warning-primary","Used as background of warning components.",Jt.colorOrange300),backgroundWarningSubtle:Yt.extend("--ft-background-warning-subtle","Used as background of subtle information components.",Jt.colorOrange10),backgroundSuccessPrimary:Yt.extend("--ft-background-success-primary","Used as background of success components.",Jt.colorGreen200),backgroundSuccessSubtle:Yt.extend("--ft-background-success-subtle","Used as background of subtle success components.",Jt.colorGreen10),backgroundGlobalSurface:Yt.extend("--ft-background-global-surface","Used as app background.",Jt.colorWhite),backgroundGlobalOnSurface:Yt.extend("--ft-background-global-on-surface","Used as background on element on the base background, like cards.",Jt.colorGray10),backgroundGlobalOnSurfaceDark:Yt.extend("--ft-background-global-on-surface-dark","Used as background on element that need background separation.",Jt.colorGray30),contentActionPrimary:Yt.extend("--ft-content-action-primary","Used on label of primary action on light surface.",Jt.colorBrand0),contentWarningPrimary:Yt.extend("--ft-content-warning-primary","Used on label of warning messages on light surface.",Jt.colorOrange300),contentWarningIconOnly:Yt.extend("--ft-content-warning-icon-only","Used on warning status icons alone",Jt.colorOrange0),contentErrorPrimary:Yt.extend("--ft-content-error-primary","Used on label of error messages on light surface.",Jt.colorRed0),contentErrorIconOnly:Yt.extend("--ft-content-error-icon-only","Used on error status icons alone",Jt.colorRed0),contentInfoPrimary:Yt.extend("--ft-content-info-primary","Used on label of information messages on light surface.",Jt.colorCyan200),contentInfoIconOnly:Yt.extend("--ft-content-info-icon-only","Used on info status icons alone",Jt.colorCyan0),contentSuccessIconOnly:Yt.extend("--ft-content-success-icon-only","Used on success status icons alone",Jt.colorGreen0),contentSuccessPrimary:Yt.extend("--ft-content-success-primary","Used on label of success messages on light surface.",Jt.colorGreen200),contentGlobalPrimary:Yt.extend("--ft-content-global-primary","Used for main content on the page.",Jt.colorGray500),contentGlobalSecondary:Yt.extend("--ft-content-global-secondary","Used for secondary content, often paired with primary content.\nAlso for action icons.",Jt.colorGray200),contentGlobalSubtle:Yt.extend("--ft-content-global-subtle","Used for placeholder, unselected items in a tab component or breadcrumb.",Jt.colorGray0),contentGlobalOnColor:Yt.extend("--ft-content-global-on-color","Used for content on a dominant color.",Jt.colorWhite),borderActionPrimary:Yt.extend("--ft-border-action-primary","Used as border for primary action components.",Jt.colorBrand0),borderActionFocusRing:Yt.extend("--ft-border-action-focus-ring","Focus ring is an additional border to indicate focus-visible state.",Jt.colorCyan0),borderWarningPrimary:Yt.extend("--ft-border-warning-primary","Used as border for warning components.",Jt.colorOrange30),borderSuccessPrimary:Yt.extend("--ft-border-success-primary","Used as border for success components.",Jt.colorGreen30),borderErrorPrimary:Yt.extend("--ft-border-error-primary","Used as border for error components.",Jt.colorRed30),borderInfoPrimary:Yt.extend("--ft-border-info-primary","Used as border for information components.",Jt.colorCyan30),borderGlobalSubtle:Yt.extend("--ft-border-global-subtle","Used as border to deliminate an area filled with background.on-surface and separators.",Jt.colorGray30),borderGlobalPrimary:Yt.extend("--ft-border-global-primary","Used as border for element like input.",Jt.colorGray50),borderInputPrimary:Yt.extend("--ft-border-input-primary","Used as border for checkboxes and radio buttons",Jt.colorGray80)},Co={largeHeight:Yt.create("--ft-button-large-height","","SIZE","40px"),largeHorizontalPadding:Yt.extend("--ft-button-large-horizontal-padding","",Jt.spacing4),largeGap:Yt.extend("--ft-button-large-gap","",Jt.spacing2),largeBorderRadius:Yt.extend("--ft-button-large-border-radius","",Jt.borderRadiusS),largeIconSize:Yt.extend("--ft-button-large-icon-size","",Jt.iconSize3),largeBorderWidth:Yt.create("--ft-button-large-border-width","","SIZE","1px"),largeFocusOutlineOffset:Yt.create("--ft-button-large-focus-outline-offset","","SIZE","2px"),largeFocusOutlineWidth:Yt.create("--ft-button-large-focus-outline-width","","SIZE","2px"),largeIconOnlyWidth:Yt.create("--ft-button-large-icon-only-width","","SIZE","40px"),smallHeight:Yt.create("--ft-button-small-height","","SIZE","30px"),smallHorizontalPadding:Yt.extend("--ft-button-small-horizontal-padding","",Jt.spacing3),smallGap:Yt.extend("--ft-button-small-gap","",Jt.spacing2),smallBorderRadius:Yt.extend("--ft-button-small-border-radius","",Jt.borderRadiusS),smallIconSize:Yt.extend("--ft-button-small-icon-size","",Jt.iconSize2),smallBorderWidth:Yt.create("--ft-button-small-border-width","","SIZE","1px"),smallFocusOutlineOffset:Yt.create("--ft-button-small-focus-outline-offset","","SIZE","2px"),smallFocusOutlineWidth:Yt.create("--ft-button-small-focus-outline-width","","SIZE","2px"),smallIconOnlyWidth:Yt.create("--ft-button-small-icon-only-width","","SIZE","30px"),primaryBackgroundColor:Yt.extend("--ft-button-primary-background-color","",No.backgroundActionPrimary),primaryColor:Yt.extend("--ft-button-primary-color","",No.contentGlobalOnColor),primaryIconColor:Yt.extend("--ft-button-primary-icon-color","",No.contentGlobalOnColor),primaryStateLayerColor:Yt.extend("--ft-button-primary-state-layer-color","",No.contentGlobalOnColor),primaryStateLayerOpacityHover:Yt.extend("--ft-button-primary-state-layer-opacity-hover","",Jt.opacity16),primaryStateLayerOpacityFocus:Yt.extend("--ft-button-primary-state-layer-opacity-focus","",Jt.opacity16),primaryStateLayerOpacityActive:Yt.extend("--ft-button-primary-state-layer-opacity-active","",Jt.opacity24),primaryComponentOpacityDisabled:Yt.extend("--ft-button-primary-component-opacity-disabled","",Jt.opacity40),focusFocusRingColor:Yt.extend("--ft-button-focus-focus-ring-color","",No.borderActionFocusRing),tertiaryBackgroundColor:Yt.create("--ft-button-tertiary-background-color","","COLOR","rgba(0,0,0,0)"),tertiaryColor:Yt.extend("--ft-button-tertiary-color","",No.contentActionPrimary),tertiaryIconColor:Yt.extend("--ft-button-tertiary-icon-color","",No.contentActionPrimary),tertiaryStateLayerColor:Yt.extend("--ft-button-tertiary-state-layer-color","",No.contentActionPrimary),tertiaryStateLayerOpacityHover:Yt.extend("--ft-button-tertiary-state-layer-opacity-hover","",Jt.opacity8),tertiaryStateLayerOpacityFocus:Yt.extend("--ft-button-tertiary-state-layer-opacity-focus","",Jt.opacity8),tertiaryStateLayerOpacityActive:Yt.extend("--ft-button-tertiary-state-layer-opacity-active","",Jt.opacity16),tertiaryComponentOpacityDisabled:Yt.extend("--ft-button-tertiary-component-opacity-disabled","",Jt.opacity40),secondaryBackgroundColor:Yt.extend("--ft-button-secondary-background-color","",Jt.colorWhite),secondaryColor:Yt.extend("--ft-button-secondary-color","",No.contentActionPrimary),secondaryIconColor:Yt.extend("--ft-button-secondary-icon-color","",No.contentActionPrimary),secondaryStateLayerColor:Yt.extend("--ft-button-secondary-state-layer-color","",No.contentActionPrimary),secondaryStateLayerOpacityHover:Yt.extend("--ft-button-secondary-state-layer-opacity-hover","",Jt.opacity8),secondaryStateLayerOpacityFocus:Yt.extend("--ft-button-secondary-state-layer-opacity-focus","",Jt.opacity8),secondaryStateLayerOpacityActive:Yt.extend("--ft-button-secondary-state-layer-opacity-active","",Jt.opacity16),secondaryComponentOpacityDisabled:Yt.extend("--ft-button-secondary-component-opacity-disabled","",Jt.opacity40),secondaryBorderColor:Yt.extend("--ft-button-secondary-border-color","",No.borderActionPrimary),neutralBackgroundColor:Yt.create("--ft-button-neutral-background-color","","COLOR","rgba(0,0,0,0)"),neutralIconColor:Yt.extend("--ft-button-neutral-icon-color","",No.contentGlobalSecondary),neutralColor:Yt.extend("--ft-button-neutral-color","",No.contentGlobalSecondary),neutralStateLayerColor:Yt.extend("--ft-button-neutral-state-layer-color","",No.contentGlobalSecondary),neutralStateLayerOpacityHover:Yt.extend("--ft-button-neutral-state-layer-opacity-hover","",Jt.opacity8),neutralStateLayerOpacityFocus:Yt.extend("--ft-button-neutral-state-layer-opacity-focus","",Jt.opacity8),neutralStateLayerOpacityActive:Yt.extend("--ft-button-neutral-state-layer-opacity-active","",Jt.opacity16),neutralComponentOpacityDisabled:Yt.extend("--ft-button-neutral-component-opacity-disabled","",Jt.opacity40)},wo={topLeftBorderRadius:Yt.extend("--ft-tabs-top-left-border-radius","",Jt.borderRadiusS),topRightBorderRadius:Yt.extend("--ft-tabs-top-right-border-radius","",Jt.borderRadiusS),labelHorizontalPadding:Yt.extend("--ft-tabs-label-horizontal-padding","",Jt.spacing4),labelVerticalPadding:Yt.extend("--ft-tabs-label-vertical-padding","",Jt.spacing3),labelGap:Yt.extend("--ft-tabs-label-gap","",Jt.spacing1)},xo={groupHorizontalPadding:Yt.extend("--ft-switch-group-horizontal-padding","",Jt.spacing1),groupVerticalPadding:Yt.extend("--ft-switch-group-vertical-padding","",Jt.spacing1),groupGap:Yt.extend("--ft-switch-group-gap","",Jt.spacing1),groupBackgroundColor:Yt.extend("--ft-switch-group-background-color","",No.backgroundGlobalSurface),groupBorderColor:Yt.extend("--ft-switch-group-border-color","",No.borderGlobalSubtle),groupBorderRadius:Yt.create("--ft-switch-group-border-radius","","SIZE","6px"),labelHorizontalPadding:Yt.extend("--ft-switch-label-horizontal-padding","",Jt.spacing2),labelVerticalPadding:Yt.extend("--ft-switch-label-vertical-padding","",Jt.spacing1),iconHorizontalPadding:Yt.extend("--ft-switch-icon-horizontal-padding","",Jt.spacing1),iconVerticalPadding:Yt.extend("--ft-switch-icon-vertical-padding","",Jt.spacing1),focusOutlineWidth:Yt.create("--ft-switch-focus-outline-width","","SIZE","2px"),focusFocusRingColor:Yt.extend("--ft-switch-focus-focus-ring-color","",No.borderActionFocusRing),optionBorderRadius:Yt.extend("--ft-switch-option-border-radius","",Jt.borderRadiusS),offStateLayerOpacityHover:Yt.extend("--ft-switch-off-state-layer-opacity-hover","",Jt.opacity8),offStateLayerOpacityFocus:Yt.extend("--ft-switch-off-state-layer-opacity-focus","",Jt.opacity8),offStateLayerOpacityActive:Yt.extend("--ft-switch-off-state-layer-opacity-active","",Jt.opacity16),offComponentOpacityDisabled:Yt.extend("--ft-switch-off-component-opacity-disabled","",Jt.opacity40),offColor:Yt.extend("--ft-switch-off-color","",No.contentGlobalSubtle),offStateLayerColor:Yt.extend("--ft-switch-off-state-layer-color","",No.contentGlobalSubtle)},Eo={color1Light:Yt.extend("--ft-chart-1-light","for area color charts",Jt.colorBrand40),color1Base:Yt.extend("--ft-chart-1-base","for line charts",Jt.colorBrand0),color2Light:Yt.extend("--ft-chart-2-light","for area color charts",Jt.colorYellow60),color2Base:Yt.extend("--ft-chart-2-base","for line charts",Jt.colorYellow100),color3Light:Yt.extend("--ft-chart-3-light","",Jt.colorUltramarine40),color3Base:Yt.extend("--ft-chart-3-base","",Jt.colorUltramarine70),color4Light:Yt.extend("--ft-chart-4-light","",Jt.colorCyan50),color4Base:Yt.extend("--ft-chart-4-base","",Jt.colorCyan100),color5Light:Yt.extend("--ft-chart-5-light","",Jt.colorRed40),color5Base:Yt.extend("--ft-chart-5-base","",Jt.colorRed60),color6Light:Yt.extend("--ft-chart-6-light","",Jt.colorGreen40),color6Base:Yt.extend("--ft-chart-6-base","",Jt.colorGreen70),color7Light:Yt.extend("--ft-chart-7-light","",Jt.colorOrange70),color7Base:Yt.extend("--ft-chart-7-base","",Jt.colorOrange100),color8Light:Yt.extend("--ft-chart-8-light","",Jt.colorAvocado70),color8Base:Yt.extend("--ft-chart-8-base","",Jt.colorAvocado200),color9Light:Yt.extend("--ft-chart-9-light","",Jt.colorBrown50),color9Base:Yt.extend("--ft-chart-9-base","",Jt.colorBrown200),color10Light:Yt.extend("--ft-chart-10-light","",Jt.colorGray50),color10Base:Yt.extend("--ft-chart-10-base","",Jt.colorGray80),monochrome10:Yt.extend("--ft-chart-monochrome-10","",Jt.colorBrand10),monochrome20:Yt.extend("--ft-chart-monochrome-20","",Jt.colorBrand20),monochrome30:Yt.extend("--ft-chart-monochrome-30","",Jt.colorBrand40),monochrome40:Yt.extend("--ft-chart-monochrome-40","",Jt.colorBrand60),monochrome50:Yt.extend("--ft-chart-monochrome-50","",Jt.colorBrand0),monochrome60:Yt.extend("--ft-chart-monochrome-60","",Jt.colorBrand200)},Ro={largeHorizontalPadding:Yt.extend("--ft-chip-large-horizontal-padding","",Jt.spacing4),largeVerticalPadding:Yt.extend("--ft-chip-large-vertical-padding","",Jt.spacing2),largeGap:Yt.extend("--ft-chip-large-gap","",Jt.spacing1),largeFocusOutlineOffset:Yt.create("--ft-chip-large-focus-outline-offset","","SIZE","2px"),largeFocusOutlineWidth:Yt.create("--ft-chip-large-focus-outline-width","","SIZE","2px"),largeBorderRadius:Yt.extend("--ft-chip-large-border-radius","",Jt.borderRadiusPill),largeBorderWidth:Yt.create("--ft-chip-large-border-width","","SIZE","1px"),largeIconSize:Yt.extend("--ft-chip-large-icon-size","",Jt.iconSize3),mediumHorizontalPadding:Yt.extend("--ft-chip-medium-horizontal-padding","",Jt.spacing3),mediumVerticalPadding:Yt.extend("--ft-chip-medium-vertical-padding","",Jt.spacing1),mediumGap:Yt.extend("--ft-chip-medium-gap","",Jt.spacing1),mediumFocusOutlineOffset:Yt.create("--ft-chip-medium-focus-outline-offset","","SIZE","2px"),mediumFocusOutlineWidth:Yt.create("--ft-chip-medium-focus-outline-width","","SIZE","2px"),mediumBorderRadius:Yt.extend("--ft-chip-medium-border-radius","",Jt.borderRadiusPill),mediumBorderWidth:Yt.create("--ft-chip-medium-border-width","","SIZE","1px"),mediumIconSize:Yt.extend("--ft-chip-medium-icon-size","",Jt.iconSize2),smallHorizontalPadding:Yt.extend("--ft-chip-small-horizontal-padding","",Jt.spacing2),smallVerticalPadding:Yt.extend("--ft-chip-small-vertical-padding","",Jt.spacing05),smallGap:Yt.extend("--ft-chip-small-gap","",Jt.spacing1),smallFocusOutlineOffset:Yt.create("--ft-chip-small-focus-outline-offset","","SIZE","2px"),smallFocusOutlineWidth:Yt.create("--ft-chip-small-focus-outline-width","","SIZE","2px"),smallBorderRadius:Yt.extend("--ft-chip-small-border-radius","",Jt.borderRadiusPill),smallBorderWidth:Yt.create("--ft-chip-small-border-width","","SIZE","1px"),smallIconSize:Yt.extend("--ft-chip-small-icon-size","",Jt.iconSize1),neutralBackgroundColor:Yt.extend("--ft-chip-neutral-background-color","",No.backgroundGlobalOnSurface),neutralColor:Yt.extend("--ft-chip-neutral-color","",No.contentGlobalPrimary),neutralBorderColor:Yt.extend("--ft-chip-neutral-border-color","",No.borderGlobalSubtle),infoBackgroundColor:Yt.extend("--ft-chip-info-background-color","",No.backgroundInfoSubtle),infoColor:Yt.extend("--ft-chip-info-color","",No.contentInfoPrimary),infoBorderColor:Yt.extend("--ft-chip-info-border-color","",No.borderInfoPrimary),successBackgroundColor:Yt.extend("--ft-chip-success-background-color","",No.backgroundSuccessSubtle),successColor:Yt.extend("--ft-chip-success-color","",No.contentSuccessPrimary),successBorderColor:Yt.extend("--ft-chip-success-border-color","",No.borderSuccessPrimary),warningBackgroundColor:Yt.extend("--ft-chip-warning-background-color","",No.backgroundWarningSubtle),warningColor:Yt.extend("--ft-chip-warning-color","",No.contentWarningPrimary),warningBorderColor:Yt.extend("--ft-chip-warning-border-color","",No.borderWarningPrimary),errorBackgroundColor:Yt.extend("--ft-chip-error-background-color","",No.backgroundErrorSubtle),errorColor:Yt.extend("--ft-chip-error-color","",No.contentErrorPrimary),errorBorderColor:Yt.extend("--ft-chip-error-border-color","",No.borderErrorPrimary)},Lo={borderWidth:Yt.create("--ft-notice-border-width","","SIZE","1px"),horizontalPadding:Yt.extend("--ft-notice-horizontal-padding","",Jt.spacing2),verticalPadding:Yt.extend("--ft-notice-vertical-padding","",Jt.spacing1),borderRadius:Yt.extend("--ft-notice-border-radius","",Jt.borderRadiusS),gap:Yt.extend("--ft-notice-gap","",Jt.spacing2),iconSize:Yt.extend("--ft-notice-icon-size","",Jt.iconSize3),infoBackgroundColor:Yt.extend("--ft-notice-info-background-color","",No.backgroundInfoSubtle),infoBorderColor:Yt.extend("--ft-notice-info-border-color","",No.borderInfoPrimary),infoColor:Yt.extend("--ft-notice-info-color","",No.contentInfoPrimary),warningBackgroundColor:Yt.extend("--ft-notice-warning-background-color","",No.backgroundWarningSubtle),warningBorderColor:Yt.extend("--ft-notice-warning-border-color","",No.borderWarningPrimary),warningColor:Yt.extend("--ft-notice-warning-color","",No.contentWarningPrimary)},Uo={labelColor:Yt.extend("--ft-checkbox-label-color","",No.contentGlobalPrimary),checkedBackgroundColor:Yt.extend("--ft-checkbox-checked-background-color","",No.contentActionPrimary),checkedStateLayerColor:Yt.extend("--ft-checkbox-checked-state-layer-color","",No.contentActionPrimary),checkedColor:Yt.extend("--ft-checkbox-checked-color","",No.contentGlobalOnColor),checkedStateLayerOpacityHover:Yt.extend("--ft-checkbox-checked-state-layer-opacity-hover","",Jt.opacity16),checkedStateLayerOpacityFocus:Yt.extend("--ft-checkbox-checked-state-layer-opacity-focus","",Jt.opacity16),checkedStateLayerOpacityActive:Yt.extend("--ft-checkbox-checked-state-layer-opacity-active","",Jt.opacity24),checkedComponentOpacityDisabled:Yt.extend("--ft-checkbox-checked-component-opacity-disabled","",Jt.opacity40),uncheckedBorderColor:Yt.extend("--ft-checkbox-unchecked-border-color","",Jt.colorGray80),uncheckedStateLayerColor:Yt.extend("--ft-checkbox-unchecked-state-layer-color","",Jt.colorGray80),uncheckedStateLayerOpacityHover:Yt.extend("--ft-checkbox-unchecked-state-layer-opacity-hover","",Jt.opacity16),uncheckedStateLayerOpacityFocus:Yt.extend("--ft-checkbox-unchecked-state-layer-opacity-focus","",Jt.opacity16),uncheckedStateLayerOpacityActive:Yt.extend("--ft-checkbox-unchecked-state-layer-opacity-active","",Jt.opacity24),uncheckedComponentOpacityDisabled:Yt.extend("--ft-checkbox-unchecked-component-opacity-disabled","",Jt.opacity40),focusFocusRingColor:Yt.extend("--ft-checkbox-focus-focus-ring-color","",No.borderActionFocusRing),focusOutlineOffset:Yt.create("--ft-checkbox-focus-outline-offset","","SIZE","3px"),focusOutlineWidth:Yt.create("--ft-checkbox-focus-outline-width","","SIZE","2px"),gap:Yt.extend("--ft-checkbox-gap","",Jt.spacing3)},Io={offStateLayerOpacityHover:Yt.extend("--ft-toggle-off-state-layer-opacity-hover","",Jt.opacity16),offStateLayerOpacityFocus:Yt.extend("--ft-toggle-off-state-layer-opacity-focus","",Jt.opacity16),offStateLayerOpacityActive:Yt.extend("--ft-toggle-off-state-layer-opacity-active","",Jt.opacity24),offComponentOpacityDisabled:Yt.extend("--ft-toggle-off-component-opacity-disabled","",Jt.opacity40),offBackgroundColor:Yt.extend("--ft-toggle-off-background-color","",No.contentGlobalSubtle),offIconColor:Yt.extend("--ft-toggle-off-icon-color","",No.contentGlobalSubtle),offStateLayerColor:Yt.extend("--ft-toggle-off-state-layer-color","",No.contentGlobalSubtle),onStateLayerOpacityHover:Yt.extend("--ft-toggle-on-state-layer-opacity-hover","",Jt.opacity16),onStateLayerOpacityFocus:Yt.extend("--ft-toggle-on-state-layer-opacity-focus","",Jt.opacity16),onStateLayerOpacityActive:Yt.extend("--ft-toggle-on-state-layer-opacity-active","",Jt.opacity24),onComponentOpacityDisabled:Yt.extend("--ft-toggle-on-component-opacity-disabled","",Jt.opacity40),onBackgroundColor:Yt.extend("--ft-toggle-on-background-color","",No.contentActionPrimary),onIconColor:Yt.extend("--ft-toggle-on-icon-color","",No.contentActionPrimary),onStateLayerColor:Yt.extend("--ft-toggle-on-state-layer-color","",No.contentActionPrimary),labelColor:Yt.extend("--ft-toggle-label-color","",No.contentGlobalPrimary),focusFocusRingColor:Yt.extend("--ft-toggle-focus-focus-ring-color","",No.borderActionFocusRing),gap:Yt.extend("--ft-toggle-gap","",Jt.spacing3)},Wo={labelColor:Yt.extend("--ft-radio-label-color","",No.contentGlobalPrimary),selectedColor:Yt.extend("--ft-radio-selected-color","",No.contentActionPrimary),selectedStateLayerColor:Yt.extend("--ft-radio-selected-state-layer-color","",No.contentActionPrimary),selectedStateLayerOpacityHover:Yt.extend("--ft-radio-selected-state-layer-opacity-hover","",Jt.opacity16),selectedStateLayerOpacityFocus:Yt.extend("--ft-radio-selected-state-layer-opacity-focus","",Jt.opacity16),selectedStateLayerOpacityActive:Yt.extend("--ft-radio-selected-state-layer-opacity-active","",Jt.opacity24),selectedComponentOpacityDisabled:Yt.extend("--ft-radio-selected-component-opacity-disabled","",Jt.opacity40),unselectedStateLayerColor:Yt.extend("--ft-radio-unselected-state-layer-color","",Jt.colorGray80),unselectedStateLayerOpacityHover:Yt.extend("--ft-radio-unselected-state-layer-opacity-hover","",Jt.opacity16),unselectedStateLayerOpacityFocus:Yt.extend("--ft-radio-unselected-state-layer-opacity-focus","",Jt.opacity16),unselectedStateLayerOpacityActive:Yt.extend("--ft-radio-unselected-state-layer-opacity-active","",Jt.opacity24),unselectedComponentOpacityDisabled:Yt.extend("--ft-radio-unselected-component-opacity-disabled","",Jt.opacity40),focusFocusRingColor:Yt.extend("--ft-radio-focus-focus-ring-color","",No.borderActionFocusRing),focusOutlineOffset:Yt.create("--ft-radio-focus-outline-offset","","SIZE","3px"),focusOutlineWidth:Yt.create("--ft-radio-focus-outline-width","","SIZE","2px"),gap:Yt.extend("--ft-radio-gap","",Jt.spacing3)},ko={iconSize:Yt.extend("--ft-notification-icon-size","",Jt.iconSize4),horizontalPadding:Yt.extend("--ft-notification-horizontal-padding","",Jt.spacing4),verticalPadding:Yt.extend("--ft-notification-vertical-padding","",Jt.spacing4),infoBackgroundColor:Yt.extend("--ft-notification-info-background-color","",No.backgroundInfoSubtle),infoColor:Yt.extend("--ft-notification-info-color","",No.contentInfoPrimary),infoBorderColor:Yt.extend("--ft-notification-info-border-color","",No.borderInfoPrimary),successBackgroundColor:Yt.extend("--ft-notification-success-background-color","",No.backgroundSuccessSubtle),successColor:Yt.extend("--ft-notification-success-color","",No.contentSuccessPrimary),successBorderColor:Yt.extend("--ft-notification-success-border-color","",No.borderSuccessPrimary),warningBackgroundColor:Yt.extend("--ft-notification-warning-background-color","",No.backgroundWarningSubtle),warningColor:Yt.extend("--ft-notification-warning-color","",No.contentWarningPrimary),warningBorderColor:Yt.extend("--ft-notification-warning-border-color","",No.borderWarningPrimary),errorBackgroundColor:Yt.extend("--ft-notification-error-background-color","",No.backgroundErrorSubtle),errorColor:Yt.extend("--ft-notification-error-color","",No.contentErrorPrimary),errorBorderColor:Yt.extend("--ft-notification-error-border-color","",No.borderErrorPrimary),borderRadius:Yt.extend("--ft-notification-border-radius","",Jt.borderRadiusPill),borderWidth:Yt.create("--ft-notification-border-width","","SIZE","1px"),gapLeading:Yt.extend("--ft-notification-gap-leading","",Jt.spacing2),gapTrailing:Yt.extend("--ft-notification-gap-trailing","",Jt.spacing8)},Fo={colorPrimary:Yt.create("--ft-color-primary","","COLOR","#2196F3"),colorPrimaryVariant:Yt.create("--ft-color-primary-variant","","COLOR","#1976D2"),colorSecondary:Yt.create("--ft-color-secondary","","COLOR","#FFCC80"),colorSecondaryVariant:Yt.create("--ft-color-secondary-variant","","COLOR","#F57C00"),colorSurface:Yt.create("--ft-color-surface","","COLOR","#FFFFFF"),colorContent:Yt.create("--ft-color-content","","COLOR","rgba(0, 0, 0, 0.87)"),colorError:Yt.create("--ft-color-error","","COLOR","#B00020"),colorOutline:Yt.create("--ft-color-outline","","COLOR","rgba(0, 0, 0, 0.14)"),colorOpacityHigh:Yt.create("--ft-color-opacity-high","","NUMBER","1"),colorOpacityMedium:Yt.create("--ft-color-opacity-medium","","NUMBER","0.74"),colorOpacityDisabled:Yt.create("--ft-color-opacity-disabled","","NUMBER","0.38"),colorOnPrimary:Yt.create("--ft-color-on-primary","","COLOR","#FFFFFF"),colorOnPrimaryHigh:Yt.create("--ft-color-on-primary-high","","COLOR","#FFFFFF"),colorOnPrimaryMedium:Yt.create("--ft-color-on-primary-medium","","COLOR","rgba(255, 255, 255, 0.74)"),colorOnPrimaryDisabled:Yt.create("--ft-color-on-primary-disabled","","COLOR","rgba(255, 255, 255, 0.38)"),colorOnSecondary:Yt.create("--ft-color-on-secondary","","COLOR","#FFFFFF"),colorOnSecondaryHigh:Yt.create("--ft-color-on-secondary-high","","COLOR","#FFFFFF"),colorOnSecondaryMedium:Yt.create("--ft-color-on-secondary-medium","","COLOR","rgba(255, 255, 255, 0.74)"),colorOnSecondaryDisabled:Yt.create("--ft-color-on-secondary-disabled","","COLOR","rgba(255, 255, 255, 0.38)"),colorOnSurface:Yt.create("--ft-color-on-surface","","COLOR","rgba(0, 0, 0, 0.87)"),colorOnSurfaceHigh:Yt.create("--ft-color-on-surface-high","","COLOR","rgba(0, 0, 0, 0.87)"),colorOnSurfaceMedium:Yt.create("--ft-color-on-surface-medium","","COLOR","rgba(0, 0, 0, 0.60)"),colorOnSurfaceDisabled:Yt.create("--ft-color-on-surface-disabled","","COLOR","rgba(0, 0, 0, 0.38)"),opacityContentOnSurfaceDisabled:Yt.create("--ft-opacity-content-on-surface-disabled","","NUMBER","0"),opacityContentOnSurfaceEnable:Yt.create("--ft-opacity-content-on-surface-enable","","NUMBER","0"),opacityContentOnSurfaceHover:Yt.create("--ft-opacity-content-on-surface-hover","","NUMBER","0.04"),opacityContentOnSurfaceFocused:Yt.create("--ft-opacity-content-on-surface-focused","","NUMBER","0.12"),opacityContentOnSurfacePressed:Yt.create("--ft-opacity-content-on-surface-pressed","","NUMBER","0.10"),opacityContentOnSurfaceSelected:Yt.create("--ft-opacity-content-on-surface-selected","","NUMBER","0.08"),opacityContentOnSurfaceDragged:Yt.create("--ft-opacity-content-on-surface-dragged","","NUMBER","0.08"),opacityPrimaryOnSurfaceDisabled:Yt.create("--ft-opacity-primary-on-surface-disabled","","NUMBER","0"),opacityPrimaryOnSurfaceEnable:Yt.create("--ft-opacity-primary-on-surface-enable","","NUMBER","0"),opacityPrimaryOnSurfaceHover:Yt.create("--ft-opacity-primary-on-surface-hover","","NUMBER","0.04"),opacityPrimaryOnSurfaceFocused:Yt.create("--ft-opacity-primary-on-surface-focused","","NUMBER","0.12"),opacityPrimaryOnSurfacePressed:Yt.create("--ft-opacity-primary-on-surface-pressed","","NUMBER","0.10"),opacityPrimaryOnSurfaceSelected:Yt.create("--ft-opacity-primary-on-surface-selected","","NUMBER","0.08"),opacityPrimaryOnSurfaceDragged:Yt.create("--ft-opacity-primary-on-surface-dragged","","NUMBER","0.08"),opacitySurfaceOnPrimaryDisabled:Yt.create("--ft-opacity-surface-on-primary-disabled","","NUMBER","0"),opacitySurfaceOnPrimaryEnable:Yt.create("--ft-opacity-surface-on-primary-enable","","NUMBER","0"),opacitySurfaceOnPrimaryHover:Yt.create("--ft-opacity-surface-on-primary-hover","","NUMBER","0.04"),opacitySurfaceOnPrimaryFocused:Yt.create("--ft-opacity-surface-on-primary-focused","","NUMBER","0.12"),opacitySurfaceOnPrimaryPressed:Yt.create("--ft-opacity-surface-on-primary-pressed","","NUMBER","0.10"),opacitySurfaceOnPrimarySelected:Yt.create("--ft-opacity-surface-on-primary-selected","","NUMBER","0.08"),opacitySurfaceOnPrimaryDragged:Yt.create("--ft-opacity-surface-on-primary-dragged","","NUMBER","0.08"),elevation00:Yt.create("--ft-elevation-00","","UNKNOWN","0px 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px 0px rgba(0, 0, 0, 0)"),elevation01:Yt.create("--ft-elevation-01","","UNKNOWN","0px 1px 4px 0px rgba(0, 0, 0, 0.06), 0px 1px 2px 0px rgba(0, 0, 0, 0.14), 0px 0px 1px 0px rgba(0, 0, 0, 0.06)"),elevation02:Yt.create("--ft-elevation-02","","UNKNOWN","0px 4px 10px 0px rgba(0, 0, 0, 0.06), 0px 2px 5px 0px rgba(0, 0, 0, 0.14), 0px 0px 1px 0px rgba(0, 0, 0, 0.06)"),elevation03:Yt.create("--ft-elevation-03","","UNKNOWN","0px 6px 13px 0px rgba(0, 0, 0, 0.06), 0px 3px 7px 0px rgba(0, 0, 0, 0.14), 0px 1px 2px 0px rgba(0, 0, 0, 0.06)"),elevation04:Yt.create("--ft-elevation-04","","UNKNOWN","0px 8px 16px 0px rgba(0, 0, 0, 0.06), 0px 4px 9px 0px rgba(0, 0, 0, 0.14), 0px 2px 3px 0px rgba(0, 0, 0, 0.06)"),elevation06:Yt.create("--ft-elevation-06","","UNKNOWN","0px 12px 22px 0px rgba(0, 0, 0, 0.06), 0px 6px 13px 0px rgba(0, 0, 0, 0.14), 0px 4px 5px 0px rgba(0, 0, 0, 0.06)"),elevation08:Yt.create("--ft-elevation-08","","UNKNOWN","0px 16px 28px 0px rgba(0, 0, 0, 0.06), 0px 8px 17px 0px rgba(0, 0, 0, 0.14), 0px 6px 7px 0px rgba(0, 0, 0, 0.06)"),elevation12:Yt.create("--ft-elevation-12","","UNKNOWN","0px 22px 40px 0px rgba(0, 0, 0, 0.06), 0px 12px 23px 0px rgba(0, 0, 0, 0.14), 0px 10px 11px 0px rgba(0, 0, 0, 0.06)"),elevation16:Yt.create("--ft-elevation-16","","UNKNOWN","0px 28px 52px 0px rgba(0, 0, 0, 0.06), 0px 16px 29px 0px rgba(0, 0, 0, 0.14), 0px 14px 15px 0px rgba(0, 0, 0, 0.06)"),elevation24:Yt.create("--ft-elevation-24","","UNKNOWN","0px 40px 76px 0px rgba(0, 0, 0, 0.06), 0px 24px 41px 0px rgba(0, 0, 0, 0.14), 0px 22px 23px 0px rgba(0, 0, 0, 0.06)"),borderRadiusS:Yt.create("--ft-border-radius-S","","SIZE","4px"),borderRadiusM:Yt.create("--ft-border-radius-M","","SIZE","8px"),borderRadiusL:Yt.create("--ft-border-radius-L","","SIZE","12px"),borderRadiusXL:Yt.create("--ft-border-radius-XL","","SIZE","16px"),titleFont:Yt.create("--ft-title-font","","UNKNOWN","Ubuntu, system-ui, sans-serif"),contentFont:Yt.create("--ft-content-font","","UNKNOWN","'Open Sans', system-ui, sans-serif"),transitionDuration:Yt.create("--ft-transition-duration","","UNKNOWN","250ms"),transitionTimingFunction:Yt.create("--ft-transition-timing-function","","UNKNOWN","ease-in-out")};class Ko extends CustomEvent{constructor(t){super("ft-notification",{bubbles:!0,composed:!0,detail:t})}}class Bo extends Event{constructor(){super("ft-pre-resize",{composed:!0,bubbles:!0})}}class Ao extends Event{constructor(){super("ft-post-resize",{composed:!0,bubbles:!0})}}class jo extends ft{createRenderRoot(){const t=this.constructor;t.elementDefinitions&&!t.registry&&(t.registry=new CustomElementRegistry,Object.entries(t.elementDefinitions).forEach((([o,e])=>t.registry.define(o,e))));const o={...t.shadowRootOptions,customElements:t.registry},e=this.renderOptions.creationScope=this.attachShadow(o);return l(e,t.elementStyles),e}}var Zo,Po=function(t,o,e,r){for(var n,i=arguments.length,a=i<3?o:null===r?r=Object.getOwnPropertyDescriptor(o,e):r,c=t.length-1;c>=0;c--)(n=t[c])&&(a=(i<3?n(a):i>3?n(o,e,a):n(o,e))||a);return i>3&&a&&Object.defineProperty(o,e,a),a};const Do=Symbol("constructorPrototype"),zo=Symbol("constructorName"),Mo=Symbol("exportpartsDebouncer");class _o extends jo{constructor(){super(),this[Zo]=new $t(5),this[zo]=this.constructor.name,this[Do]=this.constructor.prototype}adoptedCallback(){this.constructor.name!==this[zo]&&Object.setPrototypeOf(this,this[Do])}updated(t){super.updated(t),setTimeout((()=>{this.contentAvailableCallback(t),this.scheduleExportpartsUpdate()}),0)}contentAvailableCallback(t){var o,e;if((null!==(e=null===(o=this.shadowRoot)||void 0===o?void 0:o.querySelectorAll(".ft-lit-element--custom-stylesheet"))&&void 0!==e?e:[]).forEach((t=>t.remove())),this.customStylesheet){const t=document.createElement("style");t.classList.add("ft-lit-element--custom-stylesheet"),t.innerHTML=this.customStylesheet,this.shadowRoot.append(t)}}scheduleExportpartsUpdate(){this[Mo].run((()=>{var t;(null===(t=this.exportpartsPrefix)||void 0===t?void 0:t.trim())?this.setExportpartsAttribute([this.exportpartsPrefix]):null!=this.exportpartsPrefixes&&this.exportpartsPrefixes.length>0&&this.setExportpartsAttribute(this.exportpartsPrefixes)}))}setExportpartsAttribute(t){var o,e,r,n,i,a;const c=t=>null!=t&&t.trim().length>0,l=t.filter(c).map((t=>t.trim()));if(0===l.length)return void this.removeAttribute("exportparts");const s=new Set;for(let t of null!==(e=null===(o=this.shadowRoot)||void 0===o?void 0:o.querySelectorAll("[part],[exportparts]"))&&void 0!==e?e:[]){const o=null!==(n=null===(r=t.getAttribute("part"))||void 0===r?void 0:r.split(" "))&&void 0!==n?n:[],e=null!==(a=null===(i=t.getAttribute("exportparts"))||void 0===i?void 0:i.split(",").map((t=>t.split(":")[1])))&&void 0!==a?a:[];new Array(...o,...e).filter(c).map((t=>t.trim())).forEach((t=>s.add(t)))}if(0===s.size)return void this.removeAttribute("exportparts");const f=[...s.values()].flatMap((t=>l.map((o=>`${t}:${o}--${t}`))));this.setAttribute("exportparts",[...this.part,...f].join(", "))}}Zo=Mo,Po([ht()],_o.prototype,"exportpartsPrefix",void 0),Po([Vt([])],_o.prototype,"exportpartsPrefixes",void 0),Po([ht()],_o.prototype,"customStylesheet",void 0);const Ho=c`
|
|
121
121
|
.ft-no-text-select {
|
|
122
122
|
-webkit-touch-callout: none;
|
|
123
123
|
-webkit-user-select: none;
|
|
@@ -126,7 +126,7 @@ var bt;const yt=null!=(null===(bt=window.HTMLSlotElement)||void 0===bt?void 0:bt
|
|
|
126
126
|
-ms-user-select: none;
|
|
127
127
|
user-select: none;
|
|
128
128
|
}
|
|
129
|
-
|
|
129
|
+
`,$o=c`
|
|
130
130
|
.ft-word-wrap {
|
|
131
131
|
white-space: normal;
|
|
132
132
|
word-wrap: break-word;
|
|
@@ -138,7 +138,7 @@ var bt;const yt=null!=(null===(bt=window.HTMLSlotElement)||void 0===bt?void 0:bt
|
|
|
138
138
|
-webkit-hyphens: auto;
|
|
139
139
|
hyphens: auto
|
|
140
140
|
}
|
|
141
|
-
`,
|
|
141
|
+
`,To=c`
|
|
142
142
|
.ft-safari-ellipsis-fix {
|
|
143
143
|
margin-right: 0;
|
|
144
144
|
|
|
@@ -149,4 +149,4 @@ var bt;const yt=null!=(null===(bt=window.HTMLSlotElement)||void 0===bt?void 0:bt
|
|
|
149
149
|
display: inline-block;
|
|
150
150
|
width: 0;
|
|
151
151
|
}
|
|
152
|
-
`;function le(t){var e;return null!==(e=null==t?void 0:t.isFtReduxStore)&&void 0!==e&&e}var fe,he,de;const ve=Symbol("internalReduxEventsUnsubscribers"),pe=Symbol("internalStoresUnsubscribers"),be=Symbol("internalStores");function ye(t){for(var e=arguments.length,n=Array(e>1?e-1:0),r=1;r<e;r++)n[r-1]=arguments[r];throw Error("[Immer] minified error nr: "+t+(n.length?" "+n.map((function(t){return"'"+t+"'"})).join(","):"")+". Find the full error at: https://bit.ly/3cXEKWf")}function me(t){return!!t&&!!t[on]}function we(t){var e;return!!t&&(function(t){if(!t||"object"!=typeof t)return!1;var e=Object.getPrototypeOf(t);if(null===e)return!0;var n=Object.hasOwnProperty.call(e,"constructor")&&e.constructor;return n===Object||"function"==typeof n&&Function.toString.call(n)===sn}(t)||Array.isArray(t)||!!t[rn]||!!(null===(e=t.constructor)||void 0===e?void 0:e[rn])||je(t)||Re(t))}function ge(t,e,n){void 0===n&&(n=!1),0===Oe(t)?(n?Object.keys:un)(t).forEach((function(r){n&&"symbol"==typeof r||e(r,t[r],t)})):t.forEach((function(n,r){return e(r,n,t)}))}function Oe(t){var e=t[on];return e?e.i>3?e.i-4:e.i:Array.isArray(t)?1:je(t)?2:Re(t)?3:0}function xe(t,e){return 2===Oe(t)?t.has(e):Object.prototype.hasOwnProperty.call(t,e)}function Se(t,e,n){var r=Oe(t);2===r?t.set(e,n):3===r?t.add(n):t[e]=n}function Ee(t,e){return t===e?0!==t||1/t==1/e:t!=t&&e!=e}function je(t){return Ye&&t instanceof Map}function Re(t){return tn&&t instanceof Set}function Ce(t){return t.o||t.t}function Ne(t){if(Array.isArray(t))return Array.prototype.slice.call(t);var e=cn(t);delete e[on];for(var n=un(e),r=0;r<n.length;r++){var i=n[r],o=e[i];!1===o.writable&&(o.writable=!0,o.configurable=!0),(o.get||o.set)&&(e[i]={configurable:!0,writable:!0,enumerable:o.enumerable,value:t[i]})}return Object.create(Object.getPrototypeOf(t),e)}function Ae(t,e){return void 0===e&&(e=!1),Me(t)||me(t)||!we(t)||(Oe(t)>1&&(t.set=t.add=t.clear=t.delete=_e),Object.freeze(t),e&&ge(t,(function(t,e){return Ae(e,!0)}),!0)),t}function _e(){ye(2)}function Me(t){return null==t||"object"!=typeof t||Object.isFrozen(t)}function $e(t){var e=an[t];return e||ye(18,t),e}function Pe(){return Ge}function ke(t,e){e&&($e("Patches"),t.u=[],t.s=[],t.v=e)}function Ue(t){Fe(t),t.p.forEach(Te),t.p=null}function Fe(t){t===Ge&&(Ge=t.l)}function Le(t){return Ge={p:[],l:Ge,h:t,m:!0,_:0}}function Te(t){var e=t[on];0===e.i||1===e.i?e.j():e.g=!0}function De(t,e){e._=e.p.length;var n=e.p[0],r=void 0!==t&&t!==n;return e.h.O||$e("ES5").S(e,t,r),r?(n[on].P&&(Ue(e),ye(4)),we(t)&&(t=Ie(e,t),e.l||We(e,t)),e.u&&$e("Patches").M(n[on].t,t,e.u,e.s)):t=Ie(e,n,[]),Ue(e),e.u&&e.v(e.u,e.s),t!==nn?t:void 0}function Ie(t,e,n){if(Me(e))return e;var r=e[on];if(!r)return ge(e,(function(i,o){return Be(t,r,e,i,o,n)}),!0),e;if(r.A!==t)return e;if(!r.P)return We(t,r.t,!0),r.t;if(!r.I){r.I=!0,r.A._--;var i=4===r.i||5===r.i?r.o=Ne(r.k):r.o,o=i,s=!1;3===r.i&&(o=new Set(i),i.clear(),s=!0),ge(o,(function(e,o){return Be(t,r,i,e,o,n,s)})),We(t,i,!1),n&&t.u&&$e("Patches").N(r,n,t.u,t.s)}return r.o}function Be(t,e,n,r,i,o,s){if(me(i)){var u=Ie(t,i,o&&e&&3!==e.i&&!xe(e.R,r)?o.concat(r):void 0);if(Se(n,r,u),!me(u))return;t.m=!1}else s&&n.add(i);if(we(i)&&!Me(i)){if(!t.h.D&&t._<1)return;Ie(t,i),e&&e.A.l||We(t,i)}}function We(t,e,n){void 0===n&&(n=!1),!t.l&&t.h.D&&t.m&&Ae(e,n)}function qe(t,e){var n=t[on];return(n?Ce(n):t)[e]}function Ke(t,e){if(e in t)for(var n=Object.getPrototypeOf(t);n;){var r=Object.getOwnPropertyDescriptor(n,e);if(r)return r;n=Object.getPrototypeOf(n)}}function He(t){t.P||(t.P=!0,t.l&&He(t.l))}function Ve(t){t.o||(t.o=Ne(t.t))}function ze(t,e,n){var r=je(e)?$e("MapSet").F(e,n):Re(e)?$e("MapSet").T(e,n):t.O?function(t,e){var n=Array.isArray(t),r={i:n?1:0,A:e?e.A:Pe(),P:!1,I:!1,R:{},l:e,t,k:null,o:null,j:null,C:!1},i=r,o=ln;n&&(i=[r],o=fn);var s=Proxy.revocable(i,o),u=s.revoke,c=s.proxy;return r.k=c,r.j=u,c}(e,n):$e("ES5").J(e,n);return(n?n.A:Pe()).p.push(r),r}function Je(t){return me(t)||ye(22,t),function t(e){if(!we(e))return e;var n,r=e[on],i=Oe(e);if(r){if(!r.P&&(r.i<4||!$e("ES5").K(r)))return r.t;r.I=!0,n=Ze(e,i),r.I=!1}else n=Ze(e,i);return ge(n,(function(e,i){r&&function(t,e){return 2===Oe(t)?t.get(e):t[e]}(r.t,e)===i||Se(n,e,t(i))})),3===i?new Set(n):n}(t)}function Ze(t,e){switch(e){case 2:return new Map(t);case 3:return Array.from(t)}return Ne(t)}fe=pe,he=be,de=ve;var Xe,Ge,Qe="undefined"!=typeof Symbol&&"symbol"==typeof Symbol("x"),Ye="undefined"!=typeof Map,tn="undefined"!=typeof Set,en="undefined"!=typeof Proxy&&void 0!==Proxy.revocable&&"undefined"!=typeof Reflect,nn=Qe?Symbol.for("immer-nothing"):((Xe={})["immer-nothing"]=!0,Xe),rn=Qe?Symbol.for("immer-draftable"):"__$immer_draftable",on=Qe?Symbol.for("immer-state"):"__$immer_state",sn=""+Object.prototype.constructor,un="undefined"!=typeof Reflect&&Reflect.ownKeys?Reflect.ownKeys:void 0!==Object.getOwnPropertySymbols?function(t){return Object.getOwnPropertyNames(t).concat(Object.getOwnPropertySymbols(t))}:Object.getOwnPropertyNames,cn=Object.getOwnPropertyDescriptors||function(t){var e={};return un(t).forEach((function(n){e[n]=Object.getOwnPropertyDescriptor(t,n)})),e},an={},ln={get:function(t,e){if(e===on)return t;var n=Ce(t);if(!xe(n,e))return function(t,e,n){var r,i=Ke(e,n);return i?"value"in i?i.value:null===(r=i.get)||void 0===r?void 0:r.call(t.k):void 0}(t,n,e);var r=n[e];return t.I||!we(r)?r:r===qe(t.t,e)?(Ve(t),t.o[e]=ze(t.A.h,r,t)):r},has:function(t,e){return e in Ce(t)},ownKeys:function(t){return Reflect.ownKeys(Ce(t))},set:function(t,e,n){var r=Ke(Ce(t),e);if(null==r?void 0:r.set)return r.set.call(t.k,n),!0;if(!t.P){var i=qe(Ce(t),e),o=null==i?void 0:i[on];if(o&&o.t===n)return t.o[e]=n,t.R[e]=!1,!0;if(Ee(n,i)&&(void 0!==n||xe(t.t,e)))return!0;Ve(t),He(t)}return t.o[e]===n&&(void 0!==n||e in t.o)||Number.isNaN(n)&&Number.isNaN(t.o[e])||(t.o[e]=n,t.R[e]=!0),!0},deleteProperty:function(t,e){return void 0!==qe(t.t,e)||e in t.t?(t.R[e]=!1,Ve(t),He(t)):delete t.R[e],t.o&&delete t.o[e],!0},getOwnPropertyDescriptor:function(t,e){var n=Ce(t),r=Reflect.getOwnPropertyDescriptor(n,e);return r?{writable:!0,configurable:1!==t.i||"length"!==e,enumerable:r.enumerable,value:n[e]}:r},defineProperty:function(){ye(11)},getPrototypeOf:function(t){return Object.getPrototypeOf(t.t)},setPrototypeOf:function(){ye(12)}},fn={};ge(ln,(function(t,e){fn[t]=function(){return arguments[0]=arguments[0][0],e.apply(this,arguments)}})),fn.deleteProperty=function(t,e){return fn.set.call(this,t,e,void 0)},fn.set=function(t,e,n){return ln.set.call(this,t[0],e,n,t[0])};var hn=function(){function t(t){var e=this;this.O=en,this.D=!0,this.produce=function(t,n,r){if("function"==typeof t&&"function"!=typeof n){var i=n;n=t;var o=e;return function(t){var e=this;void 0===t&&(t=i);for(var r=arguments.length,s=Array(r>1?r-1:0),u=1;u<r;u++)s[u-1]=arguments[u];return o.produce(t,(function(t){var r;return(r=n).call.apply(r,[e,t].concat(s))}))}}var s;if("function"!=typeof n&&ye(6),void 0!==r&&"function"!=typeof r&&ye(7),we(t)){var u=Le(e),c=ze(e,t,void 0),a=!0;try{s=n(c),a=!1}finally{a?Ue(u):Fe(u)}return"undefined"!=typeof Promise&&s instanceof Promise?s.then((function(t){return ke(u,r),De(t,u)}),(function(t){throw Ue(u),t})):(ke(u,r),De(s,u))}if(!t||"object"!=typeof t){if(void 0===(s=n(t))&&(s=t),s===nn&&(s=void 0),e.D&&Ae(s,!0),r){var l=[],f=[];$e("Patches").M(t,s,l,f),r(l,f)}return s}ye(21,t)},this.produceWithPatches=function(t,n){if("function"==typeof t)return function(n){for(var r=arguments.length,i=Array(r>1?r-1:0),o=1;o<r;o++)i[o-1]=arguments[o];return e.produceWithPatches(n,(function(e){return t.apply(void 0,[e].concat(i))}))};var r,i,o=e.produce(t,n,(function(t,e){r=t,i=e}));return"undefined"!=typeof Promise&&o instanceof Promise?o.then((function(t){return[t,r,i]})):[o,r,i]},"boolean"==typeof(null==t?void 0:t.useProxies)&&this.setUseProxies(t.useProxies),"boolean"==typeof(null==t?void 0:t.autoFreeze)&&this.setAutoFreeze(t.autoFreeze)}var e=t.prototype;return e.createDraft=function(t){we(t)||ye(8),me(t)&&(t=Je(t));var e=Le(this),n=ze(this,t,void 0);return n[on].C=!0,Fe(e),n},e.finishDraft=function(t,e){var n=(t&&t[on]).A;return ke(n,e),De(void 0,n)},e.setAutoFreeze=function(t){this.D=t},e.setUseProxies=function(t){t&&!en&&ye(20),this.O=t},e.applyPatches=function(t,e){var n;for(n=e.length-1;n>=0;n--){var r=e[n];if(0===r.path.length&&"replace"===r.op){t=r.value;break}}n>-1&&(e=e.slice(n+1));var i=$e("Patches").$;return me(t)?i(t,e):this.produce(t,(function(t){return i(t,e)}))},t}(),dn=new hn,vn=dn.produce;function pn(t){return pn="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},pn(t)}function bn(t){var e=function(t,e){if("object"!==pn(t)||null===t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var r=n.call(t,e||"default");if("object"!==pn(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===e?String:Number)(t)}(t,"string");return"symbol"===pn(e)?e:String(e)}function yn(t,e,n){return(e=bn(e))in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function mn(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function wn(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?mn(Object(n),!0).forEach((function(e){yn(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):mn(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}function gn(t){return"Minified Redux error #"+t+"; visit https://redux.js.org/Errors?code="+t+" for the full message or use the non-minified dev environment for full errors. "}dn.produceWithPatches.bind(dn),dn.setAutoFreeze.bind(dn),dn.setUseProxies.bind(dn),dn.applyPatches.bind(dn),dn.createDraft.bind(dn),dn.finishDraft.bind(dn);var On="function"==typeof Symbol&&Symbol.observable||"@@observable",xn=function(){return Math.random().toString(36).substring(7).split("").join(".")},Sn={INIT:"@@redux/INIT"+xn(),REPLACE:"@@redux/REPLACE"+xn(),PROBE_UNKNOWN_ACTION:function(){return"@@redux/PROBE_UNKNOWN_ACTION"+xn()}};function En(t,e,n){var r;if("function"==typeof e&&"function"==typeof n||"function"==typeof n&&"function"==typeof arguments[3])throw new Error(gn(0));if("function"==typeof e&&void 0===n&&(n=e,e=void 0),void 0!==n){if("function"!=typeof n)throw new Error(gn(1));return n(En)(t,e)}if("function"!=typeof t)throw new Error(gn(2));var i=t,o=e,s=[],u=s,c=!1;function a(){u===s&&(u=s.slice())}function l(){if(c)throw new Error(gn(3));return o}function f(t){if("function"!=typeof t)throw new Error(gn(4));if(c)throw new Error(gn(5));var e=!0;return a(),u.push(t),function(){if(e){if(c)throw new Error(gn(6));e=!1,a();var n=u.indexOf(t);u.splice(n,1),s=null}}}function h(t){if(!function(t){if("object"!=typeof t||null===t)return!1;for(var e=t;null!==Object.getPrototypeOf(e);)e=Object.getPrototypeOf(e);return Object.getPrototypeOf(t)===e}(t))throw new Error(gn(7));if(void 0===t.type)throw new Error(gn(8));if(c)throw new Error(gn(9));try{c=!0,o=i(o,t)}finally{c=!1}for(var e=s=u,n=0;n<e.length;n++){(0,e[n])()}return t}return h({type:Sn.INIT}),(r={dispatch:h,subscribe:f,getState:l,replaceReducer:function(t){if("function"!=typeof t)throw new Error(gn(10));i=t,h({type:Sn.REPLACE})}})[On]=function(){var t,e=f;return(t={subscribe:function(t){if("object"!=typeof t||null===t)throw new Error(gn(11));function n(){t.next&&t.next(l())}return n(),{unsubscribe:e(n)}}})[On]=function(){return this},t},r}function jn(t){for(var e=Object.keys(t),n={},r=0;r<e.length;r++){var i=e[r];"function"==typeof t[i]&&(n[i]=t[i])}var o,s=Object.keys(n);try{!function(t){Object.keys(t).forEach((function(e){var n=t[e];if(void 0===n(void 0,{type:Sn.INIT}))throw new Error(gn(12));if(void 0===n(void 0,{type:Sn.PROBE_UNKNOWN_ACTION()}))throw new Error(gn(13))}))}(n)}catch(t){o=t}return function(t,e){if(void 0===t&&(t={}),o)throw o;for(var r=!1,i={},u=0;u<s.length;u++){var c=s[u],a=n[c],l=t[c],f=a(l,e);if(void 0===f)throw e&&e.type,new Error(gn(14));i[c]=f,r=r||f!==l}return(r=r||s.length!==Object.keys(t).length)?i:t}}function Rn(){for(var t=arguments.length,e=new Array(t),n=0;n<t;n++)e[n]=arguments[n];return 0===e.length?function(t){return t}:1===e.length?e[0]:e.reduce((function(t,e){return function(){return t(e.apply(void 0,arguments))}}))}function Cn(){for(var t=arguments.length,e=new Array(t),n=0;n<t;n++)e[n]=arguments[n];return function(t){return function(){var n=t.apply(void 0,arguments),r=function(){throw new Error(gn(15))},i={getState:n.getState,dispatch:function(){return r.apply(void 0,arguments)}},o=e.map((function(t){return t(i)}));return r=Rn.apply(void 0,o)(n.dispatch),wn(wn({},n),{},{dispatch:r})}}}function Nn(t){return function(e){var n=e.dispatch,r=e.getState;return function(e){return function(i){return"function"==typeof i?i(n,r,t):e(i)}}}}var An=Nn();An.withExtraArgument=Nn;var _n,Mn=An,$n=(_n=function(t,e){return _n=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},_n(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function n(){this.constructor=t}_n(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)}),Pn=function(t,e){var n,r,i,o,s={label:0,sent:function(){if(1&i[0])throw i[1];return i[1]},trys:[],ops:[]};return o={next:u(0),throw:u(1),return:u(2)},"function"==typeof Symbol&&(o[Symbol.iterator]=function(){return this}),o;function u(o){return function(u){return function(o){if(n)throw new TypeError("Generator is already executing.");for(;s;)try{if(n=1,r&&(i=2&o[0]?r.return:o[0]?r.throw||((i=r.return)&&i.call(r),0):r.next)&&!(i=i.call(r,o[1])).done)return i;switch(r=0,i&&(o=[2&o[0],i.value]),o[0]){case 0:case 1:i=o;break;case 4:return s.label++,{value:o[1],done:!1};case 5:s.label++,r=o[1],o=[0];continue;case 7:o=s.ops.pop(),s.trys.pop();continue;default:if(!(i=s.trys,(i=i.length>0&&i[i.length-1])||6!==o[0]&&2!==o[0])){s=0;continue}if(3===o[0]&&(!i||o[1]>i[0]&&o[1]<i[3])){s.label=o[1];break}if(6===o[0]&&s.label<i[1]){s.label=i[1],i=o;break}if(i&&s.label<i[2]){s.label=i[2],s.ops.push(o);break}i[2]&&s.ops.pop(),s.trys.pop();continue}o=e.call(t,s)}catch(t){o=[6,t],r=0}finally{n=i=0}if(5&o[0])throw o[1];return{value:o[0]?o[1]:void 0,done:!0}}([o,u])}}},kn=function(t,e){for(var n=0,r=e.length,i=t.length;n<r;n++,i++)t[i]=e[n];return t},Un=Object.defineProperty,Fn=Object.defineProperties,Ln=Object.getOwnPropertyDescriptors,Tn=Object.getOwnPropertySymbols,Dn=Object.prototype.hasOwnProperty,In=Object.prototype.propertyIsEnumerable,Bn=function(t,e,n){return e in t?Un(t,e,{enumerable:!0,configurable:!0,writable:!0,value:n}):t[e]=n},Wn=function(t,e){for(var n in e||(e={}))Dn.call(e,n)&&Bn(t,n,e[n]);if(Tn)for(var r=0,i=Tn(e);r<i.length;r++){n=i[r];In.call(e,n)&&Bn(t,n,e[n])}return t},qn=function(t,e){return Fn(t,Ln(e))},Kn="undefined"!=typeof window&&window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__?window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__:function(){if(0!==arguments.length)return"object"==typeof arguments[0]?Rn:Rn.apply(null,arguments)};var Hn=function(t){function e(){for(var n=[],r=0;r<arguments.length;r++)n[r]=arguments[r];var i=t.apply(this,n)||this;return Object.setPrototypeOf(i,e.prototype),i}return $n(e,t),Object.defineProperty(e,Symbol.species,{get:function(){return e},enumerable:!1,configurable:!0}),e.prototype.concat=function(){for(var e=[],n=0;n<arguments.length;n++)e[n]=arguments[n];return t.prototype.concat.apply(this,e)},e.prototype.prepend=function(){for(var t=[],n=0;n<arguments.length;n++)t[n]=arguments[n];return 1===t.length&&Array.isArray(t[0])?new(e.bind.apply(e,kn([void 0],t[0].concat(this)))):new(e.bind.apply(e,kn([void 0],t.concat(this))))},e}(Array),Vn=function(t){function e(){for(var n=[],r=0;r<arguments.length;r++)n[r]=arguments[r];var i=t.apply(this,n)||this;return Object.setPrototypeOf(i,e.prototype),i}return $n(e,t),Object.defineProperty(e,Symbol.species,{get:function(){return e},enumerable:!1,configurable:!0}),e.prototype.concat=function(){for(var e=[],n=0;n<arguments.length;n++)e[n]=arguments[n];return t.prototype.concat.apply(this,e)},e.prototype.prepend=function(){for(var t=[],n=0;n<arguments.length;n++)t[n]=arguments[n];return 1===t.length&&Array.isArray(t[0])?new(e.bind.apply(e,kn([void 0],t[0].concat(this)))):new(e.bind.apply(e,kn([void 0],t.concat(this))))},e}(Array);function zn(t){return we(t)?vn(t,(function(){})):t}function Jn(){return function(t){return function(t){void 0===t&&(t={});var e=t.thunk,n=void 0===e||e;t.immutableCheck,t.serializableCheck;var r=new Hn;n&&(!function(t){return"boolean"==typeof t}(n)?r.push(Mn.withExtraArgument(n.extraArgument)):r.push(Mn));return r}(t)}}function Zn(t){var e,n=Jn(),r=t||{},i=r.reducer,o=void 0===i?void 0:i,s=r.middleware,u=void 0===s?n():s,c=r.devTools,a=void 0===c||c,l=r.preloadedState,f=void 0===l?void 0:l,h=r.enhancers,d=void 0===h?void 0:h;if("function"==typeof o)e=o;else{if(!function(t){if("object"!=typeof t||null===t)return!1;var e=Object.getPrototypeOf(t);if(null===e)return!0;for(var n=e;null!==Object.getPrototypeOf(n);)n=Object.getPrototypeOf(n);return e===n}(o))throw new Error('"reducer" is a required argument, and must be a function or an object of functions that can be passed to combineReducers');e=jn(o)}var v=u;"function"==typeof v&&(v=v(n));var p=Cn.apply(void 0,v),b=Rn;a&&(b=Kn(Wn({trace:!1},"object"==typeof a&&a)));var y=new Vn(p),m=y;return Array.isArray(d)?m=kn([p],d):"function"==typeof d&&(m=d(y)),En(e,f,b.apply(void 0,m))}function Xn(t,e){function n(){for(var n=[],r=0;r<arguments.length;r++)n[r]=arguments[r];if(e){var i=e.apply(void 0,n);if(!i)throw new Error("prepareAction did not return an object");return Wn(Wn({type:t,payload:i.payload},"meta"in i&&{meta:i.meta}),"error"in i&&{error:i.error})}return{type:t,payload:n[0]}}return n.toString=function(){return""+t},n.type=t,n.match=function(e){return e.type===t},n}function Gn(t){var e,n={},r=[],i={addCase:function(t,e){var r="string"==typeof t?t:t.type;if(r in n)throw new Error("addCase cannot be called with two reducers for the same action type");return n[r]=e,i},addMatcher:function(t,e){return r.push({matcher:t,reducer:e}),i},addDefaultCase:function(t){return e=t,i}};return t(i),[n,r,e]}function Qn(t){var e=t.name;if(!e)throw new Error("`name` is a required option for createSlice");var n,r="function"==typeof t.initialState?t.initialState:zn(t.initialState),i=t.reducers||{},o=Object.keys(i),s={},u={},c={};function a(){var e="function"==typeof t.extraReducers?Gn(t.extraReducers):[t.extraReducers],n=e[0],i=void 0===n?{}:n,o=e[1],s=void 0===o?[]:o,c=e[2],a=void 0===c?void 0:c,l=Wn(Wn({},i),u);return function(t,e,n,r){void 0===n&&(n=[]);var i,o="function"==typeof e?Gn(e):[e,n,r],s=o[0],u=o[1],c=o[2];if(function(t){return"function"==typeof t}(t))i=function(){return zn(t())};else{var a=zn(t);i=function(){return a}}function l(t,e){void 0===t&&(t=i());var n=kn([s[e.type]],u.filter((function(t){return(0,t.matcher)(e)})).map((function(t){return t.reducer})));return 0===n.filter((function(t){return!!t})).length&&(n=[c]),n.reduce((function(t,n){if(n){var r;if(me(t))return void 0===(r=n(t,e))?t:r;if(we(t))return vn(t,(function(t){return n(t,e)}));if(void 0===(r=n(t,e))){if(null===t)return t;throw Error("A case reducer on a non-draftable value must not return undefined")}return r}return t}),t)}return l.getInitialState=i,l}(r,(function(t){for(var e in l)t.addCase(e,l[e]);for(var n=0,r=s;n<r.length;n++){var i=r[n];t.addMatcher(i.matcher,i.reducer)}a&&t.addDefaultCase(a)}))}return o.forEach((function(t){var n,r,o=i[t],a=e+"/"+t;"reducer"in o?(n=o.reducer,r=o.prepare):n=o,s[t]=n,u[a]=n,c[t]=r?Xn(a,r):Xn(a)})),{name:e,reducer:function(t,e){return n||(n=a()),n(t,e)},actions:c,caseReducers:s,getInitialState:function(){return n||(n=a()),n.getInitialState()}}}var Yn=["name","message","stack","code"],tr=function(t,e){this.payload=t,this.meta=e},er=function(t,e){this.payload=t,this.meta=e},nr=function(t){if("object"==typeof t&&null!==t){for(var e={},n=0,r=Yn;n<r.length;n++){var i=r[n];"string"==typeof t[i]&&(e[i]=t[i])}return e}return{message:String(t)}};function rr(t){if(t.meta&&t.meta.rejectedWithValue)throw t.payload;if(t.error)throw t.error;return t.payload}!function(){function t(t,e,n){var r=Xn(t+"/fulfilled",(function(t,e,n,r){return{payload:t,meta:qn(Wn({},r||{}),{arg:n,requestId:e,requestStatus:"fulfilled"})}})),i=Xn(t+"/pending",(function(t,e,n){return{payload:void 0,meta:qn(Wn({},n||{}),{arg:e,requestId:t,requestStatus:"pending"})}})),o=Xn(t+"/rejected",(function(t,e,r,i,o){return{payload:i,error:(n&&n.serializeError||nr)(t||"Rejected"),meta:qn(Wn({},o||{}),{arg:r,requestId:e,rejectedWithValue:!!i,requestStatus:"rejected",aborted:"AbortError"===(null==t?void 0:t.name),condition:"ConditionError"===(null==t?void 0:t.name)})}})),s="undefined"!=typeof AbortController?AbortController:function(){function t(){this.signal={aborted:!1,addEventListener:function(){},dispatchEvent:function(){return!1},onabort:function(){},removeEventListener:function(){},reason:void 0,throwIfAborted:function(){}}}return t.prototype.abort=function(){},t}();return Object.assign((function(t){return function(u,c,a){var l,f=(null==n?void 0:n.idGenerator)?n.idGenerator(t):function(t){void 0===t&&(t=21);for(var e="",n=t;n--;)e+="ModuleSymbhasOwnPr-0123456789ABCDEFGHNRVfgctiUvz_KqYTJkLxpZXIjQW"[64*Math.random()|0];return e}(),h=new s;function d(t){l=t,h.abort()}var v=function(){return s=this,v=null,p=function(){var s,v,p,b,y,m;return Pn(this,(function(w){switch(w.label){case 0:return w.trys.push([0,4,,5]),b=null==(s=null==n?void 0:n.condition)?void 0:s.call(n,t,{getState:c,extra:a}),null===(g=b)||"object"!=typeof g||"function"!=typeof g.then?[3,2]:[4,b];case 1:b=w.sent(),w.label=2;case 2:if(!1===b||h.signal.aborted)throw{name:"ConditionError",message:"Aborted due to condition callback returning false."};return y=new Promise((function(t,e){return h.signal.addEventListener("abort",(function(){return e({name:"AbortError",message:l||"Aborted"})}))})),u(i(f,t,null==(v=null==n?void 0:n.getPendingMeta)?void 0:v.call(n,{requestId:f,arg:t},{getState:c,extra:a}))),[4,Promise.race([y,Promise.resolve(e(t,{dispatch:u,getState:c,extra:a,requestId:f,signal:h.signal,abort:d,rejectWithValue:function(t,e){return new tr(t,e)},fulfillWithValue:function(t,e){return new er(t,e)}})).then((function(e){if(e instanceof tr)throw e;return e instanceof er?r(e.payload,f,t,e.meta):r(e,f,t)}))])];case 3:return p=w.sent(),[3,5];case 4:return m=w.sent(),p=m instanceof tr?o(null,f,t,m.payload,m.meta):o(m,f,t),[3,5];case 5:return n&&!n.dispatchConditionRejection&&o.match(p)&&p.meta.condition||u(p),[2,p]}var g}))},new Promise((function(t,e){var n=function(t){try{i(p.next(t))}catch(t){e(t)}},r=function(t){try{i(p.throw(t))}catch(t){e(t)}},i=function(e){return e.done?t(e.value):Promise.resolve(e.value).then(n,r)};i((p=p.apply(s,v)).next())}));var s,v,p}();return Object.assign(v,{abort:d,requestId:f,arg:t,unwrap:function(){return v.then(rr)}})}}),{pending:i,rejected:o,fulfilled:r,typePrefix:t})}t.withTypes=function(){return t}}();var ir="listenerMiddleware";Xn(ir+"/add"),Xn(ir+"/removeAll"),Xn(ir+"/remove"),"function"==typeof queueMicrotask&&queueMicrotask.bind("undefined"!=typeof window?window:"undefined"!=typeof global?global:globalThis),function(){function t(t,e){var n=i[t];return n?n.enumerable=e:i[t]=n={configurable:!0,enumerable:e,get:function(){var e=this[on];return ln.get(e,t)},set:function(e){var n=this[on];ln.set(n,t,e)}},n}function e(t){for(var e=t.length-1;e>=0;e--){var i=t[e][on];if(!i.P)switch(i.i){case 5:r(i)&&He(i);break;case 4:n(i)&&He(i)}}}function n(t){for(var e=t.t,n=t.k,r=un(n),i=r.length-1;i>=0;i--){var o=r[i];if(o!==on){var s=e[o];if(void 0===s&&!xe(e,o))return!0;var u=n[o],c=u&&u[on];if(c?c.t!==s:!Ee(u,s))return!0}}var a=!!e[on];return r.length!==un(e).length+(a?0:1)}function r(t){var e=t.k;if(e.length!==t.t.length)return!0;var n=Object.getOwnPropertyDescriptor(e,e.length-1);if(n&&!n.get)return!0;for(var r=0;r<e.length;r++)if(!e.hasOwnProperty(r))return!0;return!1}var i={};!function(t,e){an[t]||(an[t]=e)}("ES5",{J:function(e,n){var r=Array.isArray(e),i=function(e,n){if(e){for(var r=Array(n.length),i=0;i<n.length;i++)Object.defineProperty(r,""+i,t(i,!0));return r}var o=cn(n);delete o[on];for(var s=un(o),u=0;u<s.length;u++){var c=s[u];o[c]=t(c,e||!!o[c].enumerable)}return Object.create(Object.getPrototypeOf(n),o)}(r,e),o={i:r?5:4,A:n?n.A:Pe(),P:!1,I:!1,R:{},l:n,t:e,k:i,o:null,g:!1,C:!1};return Object.defineProperty(i,on,{value:o,writable:!0}),i},S:function(t,n,i){i?me(n)&&n[on].A===t&&e(t.p):(t.u&&function t(e){if(e&&"object"==typeof e){var n=e[on];if(n){var i=n.t,o=n.k,s=n.R,u=n.i;if(4===u)ge(o,(function(e){e!==on&&(void 0!==i[e]||xe(i,e)?s[e]||t(o[e]):(s[e]=!0,He(n)))})),ge(i,(function(t){void 0!==o[t]||xe(o,t)||(s[t]=!1,He(n))}));else if(5===u){if(r(n)&&(He(n),s.length=!0),o.length<i.length)for(var c=o.length;c<i.length;c++)s[c]=!1;else for(var a=i.length;a<o.length;a++)s[a]=!0;for(var l=Math.min(o.length,i.length),f=0;f<l;f++)o.hasOwnProperty(f)||(s[f]=!0),void 0===s[f]&&t(o[f])}}}}(t.p[0]),e(t.p))},K:function(t){return 4===t.i?n(t):r(t)}})}(),window.ftReduxStores||(window.ftReduxStores={});class or{static get(t){var e;const n="string"==typeof t?t:t.name,r="string"==typeof t?void 0:t,i=window.ftReduxStores[n];if(le(i))return i;if(null==r)return;const o=Qn({...r,reducers:null!==(e=r.reducers)&&void 0!==e?e:{}}),s=Zn({reducer:(t,e)=>{var n;switch(e.type){case"CLEAR_FT_REDUX_STORE":return o.getInitialState();case"DEFAULT_STATE_FIELDS_VALUES_SETTER":return{...t,...null!==(n=e.overwrites)&&void 0!==n?n:{}};default:return o.reducer(t,e)}}});return window.ftReduxStores[r.name]=new or(o,s)}constructor(t,e){this.reduxSlice=t,this.reduxStore=e,this.isFtReduxStore=!0,this.eventBus=document.createElement("event-bus"),this.actions=new Proxy(this.reduxSlice.actions,{get:(t,e,n)=>{const r=e,i=t[r];return i?(...t)=>{const e=i(...t);return this.reduxStore.dispatch(e),e}:t=>{this.setState({[r]:t})}}})}clear(){this.reduxStore.dispatch({type:"CLEAR_FT_REDUX_STORE"})}setState(t){this.reduxStore.dispatch({type:"DEFAULT_STATE_FIELDS_VALUES_SETTER",overwrites:t})}get dispatch(){throw new Error("Don't use this method, actions are automatically dispatched when called.")}[Symbol.observable](){return this.reduxStore[Symbol.observable]()}getState(){return this.reduxStore.getState()}replaceReducer(t){throw new Error("Not implemented yet.")}subscribe(t){return this.reduxStore.subscribe(t)}get name(){return this.reduxSlice.name}get reducer(){return this.reduxSlice.reducer}get caseReducers(){return this.reduxSlice.caseReducers}getInitialState(){return this.reduxSlice.getInitialState()}}const sr=Symbol("elementInternals");var ur,cr,ar;const lr=navigator.vendor&&!!navigator.vendor.match(/apple/i)||"[object SafariRemoteNotification]"===(null!==(ar=null===(cr=null===(ur=window.safari)||void 0===ur?void 0:ur.pushNotification)||void 0===cr?void 0:cr.toString())&&void 0!==ar?ar:"");var fr=Object.freeze({__proto__:null,CacheRegistry:class{constructor(){this.loaders={},this.content={},this.clearTimeouts={},this.finalContent=new Set}register(t,e){this.loaders[t]=e,this.finalContent.delete(t)}registerFinal(t,e){this.loaders[t]=e,this.finalContent.add(t)}clearAll(){for(let t in this.content)this.clear(t)}clear(t){this.finalContent.has(t)||this.forceClear(t)}forceClear(t){this.clearClearTimeout(t),this.content[t]instanceof qt&&this.content[t].cancel(),delete this.content[t]}clearClearTimeout(t){null!=this.clearTimeouts[t]&&(window.clearTimeout(this.clearTimeouts[t]),delete this.clearTimeouts[t])}set(t,e){this.forceClear(t),this.register(t,(async()=>e)),this.content[t]=e}setFinal(t,e){this.forceClear(t),this.registerFinal(t,(async()=>e)),this.content[t]=e}async get(t,e,n){if(void 0===this.content[t]){if(null==(e=null!=e?e:this.loaders[t]))throw new Error("Unknown cache key "+t);const r=Kt(e());return this.content[t]=r,r.then((e=>(this.content[t]=e,null!=n&&(this.clearClearTimeout(t),this.clearTimeouts[t]=window.setTimeout((()=>this.clear(t)),n)),e)))}if(this.content[t]instanceof Error)throw this.content[t];return this.content[t]}isResolvedValue(t){return!(null==t||t instanceof Promise||t instanceof Error)}getNow(t){if(this.isResolvedValue(this.content[t]))return this.content[t]}has(t){return null!=this.content[t]}resolvedKeys(){return Object.keys(this.content).filter((t=>this.isResolvedValue(this.content[t])))}resolvedValues(){return Object.values(this.content).filter((t=>this.isResolvedValue(t)))}keys(){return Object.keys(this.content)}values(){return Object.values(this.content)}},CancelablePromise:qt,CanceledPromiseError:Wt,Debouncer:Ht,FtCssVariableFactory:Zt,FtLitElement:se,FtLitElementRedux:class extends se{constructor(){super(...arguments),this[fe]=new Map,this[he]=new Map,this[de]=[]}update(t){var e;super.update(t),(null===(e=this.reduxReactiveProperties)||void 0===e?void 0:e.some((e=>t.has(e))))&&this.updateFromStores()}getUnnamedStore(){if(this[be].size>1)throw new Error("Cannot resolve unnamed store when multiple stores are configured.");return[...this[be].values()][0]}getStore(t){return null==t?this.getUnnamedStore():this[be].get(t)}addStore(t,e){var n;e=null!==(n=null!=e?e:le(t)?t.name:void 0)&&void 0!==n?n:"default-store",this.unsubscribeFromStore(e),this.setupStore(e,t)}removeStore(t){const e="string"==typeof t?t:t.name;this.unsubscribeFromStore(e),this[be].delete(e)}setupStore(t,e){this[be].set(t,e),this.subscribeToStore(t,e),this.updateFromStores()}setupStores(){this.unsubscribeFromStores(),this[be].forEach(((t,e)=>this.subscribeToStore(e,t))),this.updateFromStores()}updateFromStores(){this.reduxProperties&&this.reduxProperties.forEach(((t,e)=>{const n=this.constructor.getPropertyOptions(e);if(!(null==n?void 0:n.attribute)||!this.hasAttribute("string"==typeof(null==n?void 0:n.attribute)?n.attribute:e)){const n=this.getStore(t.store);n&&(t.store?this[pe].has(t.store):this[pe].size>0)&&(this[e]=t.selector(n.getState(),this))}}))}subscribeToStore(t,e){var n;this[pe].set(t,e.subscribe((()=>this.updateFromStores()))),le(e)&&e.eventBus&&(null===(n=this.reduxEventListeners)||void 0===n||n.forEach(((t,n)=>{if("function"==typeof this[n]&&(!t.store||e.name===t.store)){const r=t=>this[n](t);e.eventBus.addEventListener(t.eventName,r),this[ve].push((()=>e.eventBus.removeEventListener(t.eventName,r)))}}))),this.onStoreAvailable(t)}unsubscribeFromStores(){this[pe].forEach(((t,e)=>this.unsubscribeFromStore(e))),this[ve].forEach((t=>t())),this[ve]=[]}unsubscribeFromStore(t){this[pe].has(t)&&this[pe].get(t)(),this[pe].delete(t)}onStoreAvailable(t){}connectedCallback(){super.connectedCallback(),this.setupStores()}disconnectedCallback(){super.disconnectedCallback(),this.unsubscribeFromStores()}},FtNotificationEvent:Gt,FtReduxStore:or,ParametrizedLabelResolver:class{constructor(t,e){this.defaultLabels=t,this.labels=e}resolve(t,...e){var n,r;t=this.resolvePluralKey(t,e);let i=null!==(r=null!==(n=this.labels[t])&&void 0!==n?n:this.defaultLabels[t])&&void 0!==r?r:"";return e.forEach(((t,e)=>i=i.replace(new RegExp(`\\{${e}([^}]*)\\}`,"g"),((e,n)=>this.formatValue(t,n))))),i}resolvePluralKey(t,e){for(let n of e)if("number"==typeof n){const e=`${String(t)}[\\=${n}]`;if(e in this.labels||e in this.defaultLabels)return e}return t}formatValue(t,e){return t instanceof Date?this.formatDate(t,e):null!=t?t:""}formatDate(t,e){const n=n=>(null==e?void 0:e.includes("date"))?t.toLocaleDateString(n):(null==e?void 0:e.includes("time"))?t.toLocaleTimeString(n):t.toLocaleString(n);try{return n(document.documentElement.lang)}catch(t){return n()}}},PostResizeEvent:Yt,PreResizeEvent:Qt,ScopedRegistryLitElement:te,cancelable:Kt,clearAllStores:function(){var t;for(let e of Object.values(null!==(t=window.ftReduxStores)&&void 0!==t?t:{}))le(e)&&e.clear()},customElement:t=>e=>{window.customElements.get(t)||window.customElements.define(t,e)},dateReviver:function(...t){return function(e,n){return t.includes(e)?Vt(n):n}},deepEqual:zt,delay:t=>new Promise((e=>setTimeout(e,t))),designSystemVariables:Xt,eventPathContainsMatchingElement:function(t,e,n){if(e.length>0){const r=t.composedPath();for(let t of r){if(t===n)return!1;if(t.matches&&e.some((e=>t.matches(e))))return!0}}return!1},flatDeep:function t(e,n){return e.flatMap((e=>[e,...t(n(e),n)]))},isFtReduxStore:le,isSafari:lr,jsonProperty:Jt,noTextSelect:ue,parseDate:Vt,redux:t=>{const e=null!=t?t:{};return(t,n)=>{var r;const i={hasChanged:(t,e)=>!zt(t,e),attribute:!1,...e};vt(i)(t,n);const o=t;o.reduxProperties=o.reduxProperties||new Map,o.reduxProperties.set(n,{selector:null!==(r=e.selector)&&void 0!==r?r:t=>t[n],store:e.store})}},reduxEventListener:t=>(e,n)=>{const r=e;r.reduxEventListeners=r.reduxEventListeners||new Map,r.reduxEventListeners.set(n,t)},reduxReactive:()=>(t,e)=>{const n=t;n.reduxReactiveProperties=n.reduxReactiveProperties||[],n.reduxReactiveProperties.push(e)},safariEllipsisFix:ae,serializeRequest:function(t,e){var n;const r=new URLSearchParams({"content-lang":null!==(n=e.contentLocale)&&void 0!==n?n:"all",query:e.query});if(e.filters.length>0){const t=e.filters.map((t=>{const e=t.values.map((t=>t.replace(/_/g,"\\\\\\\\_").replace(/~/g,"\\\\~").replace(/\*/g,"\\*"))).map((t=>encodeURIComponent(function(t){return`"${t}"`}(t)))).join("_");return`${t.key}~${e}`})).join("*");r.append("filters",t)}return new URL(`${t.replace(/\/+$/,"")}/search?${r.toString()}`).href},setVariable:function(t,e){return s(`${t.name}: ${e}`)},toFtFormComponent:function(t,e){return class extends t{static get formAssociated(){return!0}get form(){return this[sr].form}constructor(...t){super(t),this[sr]=this.attachInternals(),this[sr].role=e}setFormValue(t){this[sr].setFormValue(t)}}},wordWrap:ce});t.lit=ht,t.litClassMap=kt,t.litDecorators=wt,t.litRepeat=$t,t.litStyleMap=Tt,t.litUnsafeHTML=Bt,t.wcUtils=fr}));
|
|
152
|
+
`;function Go(t){var o;return null!==(o=null==t?void 0:t.isFtReduxStore)&&void 0!==o&&o}var Vo,qo,Yo;const Jo=Symbol("internalReduxEventsUnsubscribers"),Xo=Symbol("internalStoresUnsubscribers"),Qo=Symbol("internalStores");function te(t){for(var o=arguments.length,e=Array(o>1?o-1:0),r=1;r<o;r++)e[r-1]=arguments[r];throw Error("[Immer] minified error nr: "+t+(e.length?" "+e.map((function(t){return"'"+t+"'"})).join(","):"")+". Find the full error at: https://bit.ly/3cXEKWf")}function oe(t){return!!t&&!!t[ze]}function ee(t){var o;return!!t&&(function(t){if(!t||"object"!=typeof t)return!1;var o=Object.getPrototypeOf(t);if(null===o)return!0;var e=Object.hasOwnProperty.call(o,"constructor")&&o.constructor;return e===Object||"function"==typeof e&&Function.toString.call(e)===Me}(t)||Array.isArray(t)||!!t[De]||!!(null===(o=t.constructor)||void 0===o?void 0:o[De])||le(t)||se(t))}function re(t,o,e){void 0===e&&(e=!1),0===ne(t)?(e?Object.keys:_e)(t).forEach((function(r){e&&"symbol"==typeof r||o(r,t[r],t)})):t.forEach((function(e,r){return o(r,e,t)}))}function ne(t){var o=t[ze];return o?o.i>3?o.i-4:o.i:Array.isArray(t)?1:le(t)?2:se(t)?3:0}function ie(t,o){return 2===ne(t)?t.has(o):Object.prototype.hasOwnProperty.call(t,o)}function ae(t,o,e){var r=ne(t);2===r?t.set(o,e):3===r?t.add(e):t[o]=e}function ce(t,o){return t===o?0!==t||1/t==1/o:t!=t&&o!=o}function le(t){return Ae&&t instanceof Map}function se(t){return je&&t instanceof Set}function fe(t){return t.o||t.t}function ue(t){if(Array.isArray(t))return Array.prototype.slice.call(t);var o=He(t);delete o[ze];for(var e=_e(o),r=0;r<e.length;r++){var n=e[r],i=o[n];!1===i.writable&&(i.writable=!0,i.configurable=!0),(i.get||i.set)&&(o[n]={configurable:!0,writable:!0,enumerable:i.enumerable,value:t[n]})}return Object.create(Object.getPrototypeOf(t),o)}function de(t,o){return void 0===o&&(o=!1),he(t)||oe(t)||!ee(t)||(ne(t)>1&&(t.set=t.add=t.clear=t.delete=pe),Object.freeze(t),o&&re(t,(function(t,o){return de(o,!0)}),!0)),t}function pe(){te(2)}function he(t){return null==t||"object"!=typeof t||Object.isFrozen(t)}function ye(t){var o=$e[t];return o||te(18,t),o}function ge(){return Ke}function be(t,o){o&&(ye("Patches"),t.u=[],t.s=[],t.v=o)}function me(t){Oe(t),t.p.forEach(Se),t.p=null}function Oe(t){t===Ke&&(Ke=t.l)}function ve(t){return Ke={p:[],l:Ke,h:t,m:!0,_:0}}function Se(t){var o=t[ze];0===o.i||1===o.i?o.j():o.g=!0}function Ne(t,o){o._=o.p.length;var e=o.p[0],r=void 0!==t&&t!==e;return o.h.O||ye("ES5").S(o,t,r),r?(e[ze].P&&(me(o),te(4)),ee(t)&&(t=Ce(o,t),o.l||xe(o,t)),o.u&&ye("Patches").M(e[ze].t,t,o.u,o.s)):t=Ce(o,e,[]),me(o),o.u&&o.v(o.u,o.s),t!==Pe?t:void 0}function Ce(t,o,e){if(he(o))return o;var r=o[ze];if(!r)return re(o,(function(n,i){return we(t,r,o,n,i,e)}),!0),o;if(r.A!==t)return o;if(!r.P)return xe(t,r.t,!0),r.t;if(!r.I){r.I=!0,r.A._--;var n=4===r.i||5===r.i?r.o=ue(r.k):r.o,i=n,a=!1;3===r.i&&(i=new Set(n),n.clear(),a=!0),re(i,(function(o,i){return we(t,r,n,o,i,e,a)})),xe(t,n,!1),e&&t.u&&ye("Patches").N(r,e,t.u,t.s)}return r.o}function we(t,o,e,r,n,i,a){if(oe(n)){var c=Ce(t,n,i&&o&&3!==o.i&&!ie(o.R,r)?i.concat(r):void 0);if(ae(e,r,c),!oe(c))return;t.m=!1}else a&&e.add(n);if(ee(n)&&!he(n)){if(!t.h.D&&t._<1)return;Ce(t,n),o&&o.A.l||xe(t,n)}}function xe(t,o,e){void 0===e&&(e=!1),!t.l&&t.h.D&&t.m&&de(o,e)}function Ee(t,o){var e=t[ze];return(e?fe(e):t)[o]}function Re(t,o){if(o in t)for(var e=Object.getPrototypeOf(t);e;){var r=Object.getOwnPropertyDescriptor(e,o);if(r)return r;e=Object.getPrototypeOf(e)}}function Le(t){t.P||(t.P=!0,t.l&&Le(t.l))}function Ue(t){t.o||(t.o=ue(t.t))}function Ie(t,o,e){var r=le(o)?ye("MapSet").F(o,e):se(o)?ye("MapSet").T(o,e):t.O?function(t,o){var e=Array.isArray(t),r={i:e?1:0,A:o?o.A:ge(),P:!1,I:!1,R:{},l:o,t,k:null,o:null,j:null,C:!1},n=r,i=Te;e&&(n=[r],i=Ge);var a=Proxy.revocable(n,i),c=a.revoke,l=a.proxy;return r.k=l,r.j=c,l}(o,e):ye("ES5").J(o,e);return(e?e.A:ge()).p.push(r),r}function We(t){return oe(t)||te(22,t),function t(o){if(!ee(o))return o;var e,r=o[ze],n=ne(o);if(r){if(!r.P&&(r.i<4||!ye("ES5").K(r)))return r.t;r.I=!0,e=ke(o,n),r.I=!1}else e=ke(o,n);return re(e,(function(o,n){r&&function(t,o){return 2===ne(t)?t.get(o):t[o]}(r.t,o)===n||ae(e,o,t(n))})),3===n?new Set(e):e}(t)}function ke(t,o){switch(o){case 2:return new Map(t);case 3:return Array.from(t)}return ue(t)}Vo=Xo,qo=Qo,Yo=Jo;var Fe,Ke,Be="undefined"!=typeof Symbol&&"symbol"==typeof Symbol("x"),Ae="undefined"!=typeof Map,je="undefined"!=typeof Set,Ze="undefined"!=typeof Proxy&&void 0!==Proxy.revocable&&"undefined"!=typeof Reflect,Pe=Be?Symbol.for("immer-nothing"):((Fe={})["immer-nothing"]=!0,Fe),De=Be?Symbol.for("immer-draftable"):"__$immer_draftable",ze=Be?Symbol.for("immer-state"):"__$immer_state",Me=""+Object.prototype.constructor,_e="undefined"!=typeof Reflect&&Reflect.ownKeys?Reflect.ownKeys:void 0!==Object.getOwnPropertySymbols?function(t){return Object.getOwnPropertyNames(t).concat(Object.getOwnPropertySymbols(t))}:Object.getOwnPropertyNames,He=Object.getOwnPropertyDescriptors||function(t){var o={};return _e(t).forEach((function(e){o[e]=Object.getOwnPropertyDescriptor(t,e)})),o},$e={},Te={get:function(t,o){if(o===ze)return t;var e=fe(t);if(!ie(e,o))return function(t,o,e){var r,n=Re(o,e);return n?"value"in n?n.value:null===(r=n.get)||void 0===r?void 0:r.call(t.k):void 0}(t,e,o);var r=e[o];return t.I||!ee(r)?r:r===Ee(t.t,o)?(Ue(t),t.o[o]=Ie(t.A.h,r,t)):r},has:function(t,o){return o in fe(t)},ownKeys:function(t){return Reflect.ownKeys(fe(t))},set:function(t,o,e){var r=Re(fe(t),o);if(null==r?void 0:r.set)return r.set.call(t.k,e),!0;if(!t.P){var n=Ee(fe(t),o),i=null==n?void 0:n[ze];if(i&&i.t===e)return t.o[o]=e,t.R[o]=!1,!0;if(ce(e,n)&&(void 0!==e||ie(t.t,o)))return!0;Ue(t),Le(t)}return t.o[o]===e&&(void 0!==e||o in t.o)||Number.isNaN(e)&&Number.isNaN(t.o[o])||(t.o[o]=e,t.R[o]=!0),!0},deleteProperty:function(t,o){return void 0!==Ee(t.t,o)||o in t.t?(t.R[o]=!1,Ue(t),Le(t)):delete t.R[o],t.o&&delete t.o[o],!0},getOwnPropertyDescriptor:function(t,o){var e=fe(t),r=Reflect.getOwnPropertyDescriptor(e,o);return r?{writable:!0,configurable:1!==t.i||"length"!==o,enumerable:r.enumerable,value:e[o]}:r},defineProperty:function(){te(11)},getPrototypeOf:function(t){return Object.getPrototypeOf(t.t)},setPrototypeOf:function(){te(12)}},Ge={};re(Te,(function(t,o){Ge[t]=function(){return arguments[0]=arguments[0][0],o.apply(this,arguments)}})),Ge.deleteProperty=function(t,o){return Ge.set.call(this,t,o,void 0)},Ge.set=function(t,o,e){return Te.set.call(this,t[0],o,e,t[0])};var Ve=function(){function t(t){var o=this;this.O=Ze,this.D=!0,this.produce=function(t,e,r){if("function"==typeof t&&"function"!=typeof e){var n=e;e=t;var i=o;return function(t){var o=this;void 0===t&&(t=n);for(var r=arguments.length,a=Array(r>1?r-1:0),c=1;c<r;c++)a[c-1]=arguments[c];return i.produce(t,(function(t){var r;return(r=e).call.apply(r,[o,t].concat(a))}))}}var a;if("function"!=typeof e&&te(6),void 0!==r&&"function"!=typeof r&&te(7),ee(t)){var c=ve(o),l=Ie(o,t,void 0),s=!0;try{a=e(l),s=!1}finally{s?me(c):Oe(c)}return"undefined"!=typeof Promise&&a instanceof Promise?a.then((function(t){return be(c,r),Ne(t,c)}),(function(t){throw me(c),t})):(be(c,r),Ne(a,c))}if(!t||"object"!=typeof t){if(void 0===(a=e(t))&&(a=t),a===Pe&&(a=void 0),o.D&&de(a,!0),r){var f=[],u=[];ye("Patches").M(t,a,f,u),r(f,u)}return a}te(21,t)},this.produceWithPatches=function(t,e){if("function"==typeof t)return function(e){for(var r=arguments.length,n=Array(r>1?r-1:0),i=1;i<r;i++)n[i-1]=arguments[i];return o.produceWithPatches(e,(function(o){return t.apply(void 0,[o].concat(n))}))};var r,n,i=o.produce(t,e,(function(t,o){r=t,n=o}));return"undefined"!=typeof Promise&&i instanceof Promise?i.then((function(t){return[t,r,n]})):[i,r,n]},"boolean"==typeof(null==t?void 0:t.useProxies)&&this.setUseProxies(t.useProxies),"boolean"==typeof(null==t?void 0:t.autoFreeze)&&this.setAutoFreeze(t.autoFreeze)}var o=t.prototype;return o.createDraft=function(t){ee(t)||te(8),oe(t)&&(t=We(t));var o=ve(this),e=Ie(this,t,void 0);return e[ze].C=!0,Oe(o),e},o.finishDraft=function(t,o){var e=(t&&t[ze]).A;return be(e,o),Ne(void 0,e)},o.setAutoFreeze=function(t){this.D=t},o.setUseProxies=function(t){t&&!Ze&&te(20),this.O=t},o.applyPatches=function(t,o){var e;for(e=o.length-1;e>=0;e--){var r=o[e];if(0===r.path.length&&"replace"===r.op){t=r.value;break}}e>-1&&(o=o.slice(e+1));var n=ye("Patches").$;return oe(t)?n(t,o):this.produce(t,(function(t){return n(t,o)}))},t}(),qe=new Ve,Ye=qe.produce;function Je(t){return Je="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Je(t)}function Xe(t){var o=function(t,o){if("object"!==Je(t)||null===t)return t;var e=t[Symbol.toPrimitive];if(void 0!==e){var r=e.call(t,o||"default");if("object"!==Je(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===o?String:Number)(t)}(t,"string");return"symbol"===Je(o)?o:String(o)}function Qe(t,o,e){return(o=Xe(o))in t?Object.defineProperty(t,o,{value:e,enumerable:!0,configurable:!0,writable:!0}):t[o]=e,t}function tr(t,o){var e=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);o&&(r=r.filter((function(o){return Object.getOwnPropertyDescriptor(t,o).enumerable}))),e.push.apply(e,r)}return e}function or(t){for(var o=1;o<arguments.length;o++){var e=null!=arguments[o]?arguments[o]:{};o%2?tr(Object(e),!0).forEach((function(o){Qe(t,o,e[o])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(e)):tr(Object(e)).forEach((function(o){Object.defineProperty(t,o,Object.getOwnPropertyDescriptor(e,o))}))}return t}function er(t){return"Minified Redux error #"+t+"; visit https://redux.js.org/Errors?code="+t+" for the full message or use the non-minified dev environment for full errors. "}qe.produceWithPatches.bind(qe),qe.setAutoFreeze.bind(qe),qe.setUseProxies.bind(qe),qe.applyPatches.bind(qe),qe.createDraft.bind(qe),qe.finishDraft.bind(qe);var rr="function"==typeof Symbol&&Symbol.observable||"@@observable",nr=function(){return Math.random().toString(36).substring(7).split("").join(".")},ir={INIT:"@@redux/INIT"+nr(),REPLACE:"@@redux/REPLACE"+nr(),PROBE_UNKNOWN_ACTION:function(){return"@@redux/PROBE_UNKNOWN_ACTION"+nr()}};function ar(t,o,e){var r;if("function"==typeof o&&"function"==typeof e||"function"==typeof e&&"function"==typeof arguments[3])throw new Error(er(0));if("function"==typeof o&&void 0===e&&(e=o,o=void 0),void 0!==e){if("function"!=typeof e)throw new Error(er(1));return e(ar)(t,o)}if("function"!=typeof t)throw new Error(er(2));var n=t,i=o,a=[],c=a,l=!1;function s(){c===a&&(c=a.slice())}function f(){if(l)throw new Error(er(3));return i}function u(t){if("function"!=typeof t)throw new Error(er(4));if(l)throw new Error(er(5));var o=!0;return s(),c.push(t),function(){if(o){if(l)throw new Error(er(6));o=!1,s();var e=c.indexOf(t);c.splice(e,1),a=null}}}function d(t){if(!function(t){if("object"!=typeof t||null===t)return!1;for(var o=t;null!==Object.getPrototypeOf(o);)o=Object.getPrototypeOf(o);return Object.getPrototypeOf(t)===o}(t))throw new Error(er(7));if(void 0===t.type)throw new Error(er(8));if(l)throw new Error(er(9));try{l=!0,i=n(i,t)}finally{l=!1}for(var o=a=c,e=0;e<o.length;e++){(0,o[e])()}return t}return d({type:ir.INIT}),(r={dispatch:d,subscribe:u,getState:f,replaceReducer:function(t){if("function"!=typeof t)throw new Error(er(10));n=t,d({type:ir.REPLACE})}})[rr]=function(){var t,o=u;return(t={subscribe:function(t){if("object"!=typeof t||null===t)throw new Error(er(11));function e(){t.next&&t.next(f())}return e(),{unsubscribe:o(e)}}})[rr]=function(){return this},t},r}function cr(t){for(var o=Object.keys(t),e={},r=0;r<o.length;r++){var n=o[r];"function"==typeof t[n]&&(e[n]=t[n])}var i,a=Object.keys(e);try{!function(t){Object.keys(t).forEach((function(o){var e=t[o];if(void 0===e(void 0,{type:ir.INIT}))throw new Error(er(12));if(void 0===e(void 0,{type:ir.PROBE_UNKNOWN_ACTION()}))throw new Error(er(13))}))}(e)}catch(t){i=t}return function(t,o){if(void 0===t&&(t={}),i)throw i;for(var r=!1,n={},c=0;c<a.length;c++){var l=a[c],s=e[l],f=t[l],u=s(f,o);if(void 0===u)throw o&&o.type,new Error(er(14));n[l]=u,r=r||u!==f}return(r=r||a.length!==Object.keys(t).length)?n:t}}function lr(){for(var t=arguments.length,o=new Array(t),e=0;e<t;e++)o[e]=arguments[e];return 0===o.length?function(t){return t}:1===o.length?o[0]:o.reduce((function(t,o){return function(){return t(o.apply(void 0,arguments))}}))}function sr(){for(var t=arguments.length,o=new Array(t),e=0;e<t;e++)o[e]=arguments[e];return function(t){return function(){var e=t.apply(void 0,arguments),r=function(){throw new Error(er(15))},n={getState:e.getState,dispatch:function(){return r.apply(void 0,arguments)}},i=o.map((function(t){return t(n)}));return r=lr.apply(void 0,i)(e.dispatch),or(or({},e),{},{dispatch:r})}}}function fr(t){return function(o){var e=o.dispatch,r=o.getState;return function(o){return function(n){return"function"==typeof n?n(e,r,t):o(n)}}}}var ur=fr();ur.withExtraArgument=fr;var dr,pr=ur,hr=(dr=function(t,o){return dr=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,o){t.__proto__=o}||function(t,o){for(var e in o)Object.prototype.hasOwnProperty.call(o,e)&&(t[e]=o[e])},dr(t,o)},function(t,o){if("function"!=typeof o&&null!==o)throw new TypeError("Class extends value "+String(o)+" is not a constructor or null");function e(){this.constructor=t}dr(t,o),t.prototype=null===o?Object.create(o):(e.prototype=o.prototype,new e)}),yr=function(t,o){var e,r,n,i,a={label:0,sent:function(){if(1&n[0])throw n[1];return n[1]},trys:[],ops:[]};return i={next:c(0),throw:c(1),return:c(2)},"function"==typeof Symbol&&(i[Symbol.iterator]=function(){return this}),i;function c(i){return function(c){return function(i){if(e)throw new TypeError("Generator is already executing.");for(;a;)try{if(e=1,r&&(n=2&i[0]?r.return:i[0]?r.throw||((n=r.return)&&n.call(r),0):r.next)&&!(n=n.call(r,i[1])).done)return n;switch(r=0,n&&(i=[2&i[0],n.value]),i[0]){case 0:case 1:n=i;break;case 4:return a.label++,{value:i[1],done:!1};case 5:a.label++,r=i[1],i=[0];continue;case 7:i=a.ops.pop(),a.trys.pop();continue;default:if(!(n=a.trys,(n=n.length>0&&n[n.length-1])||6!==i[0]&&2!==i[0])){a=0;continue}if(3===i[0]&&(!n||i[1]>n[0]&&i[1]<n[3])){a.label=i[1];break}if(6===i[0]&&a.label<n[1]){a.label=n[1],n=i;break}if(n&&a.label<n[2]){a.label=n[2],a.ops.push(i);break}n[2]&&a.ops.pop(),a.trys.pop();continue}i=o.call(t,a)}catch(t){i=[6,t],r=0}finally{e=n=0}if(5&i[0])throw i[1];return{value:i[0]?i[1]:void 0,done:!0}}([i,c])}}},gr=function(t,o){for(var e=0,r=o.length,n=t.length;e<r;e++,n++)t[n]=o[e];return t},br=Object.defineProperty,mr=Object.defineProperties,Or=Object.getOwnPropertyDescriptors,vr=Object.getOwnPropertySymbols,Sr=Object.prototype.hasOwnProperty,Nr=Object.prototype.propertyIsEnumerable,Cr=function(t,o,e){return o in t?br(t,o,{enumerable:!0,configurable:!0,writable:!0,value:e}):t[o]=e},wr=function(t,o){for(var e in o||(o={}))Sr.call(o,e)&&Cr(t,e,o[e]);if(vr)for(var r=0,n=vr(o);r<n.length;r++){e=n[r];Nr.call(o,e)&&Cr(t,e,o[e])}return t},xr=function(t,o){return mr(t,Or(o))},Er="undefined"!=typeof window&&window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__?window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__:function(){if(0!==arguments.length)return"object"==typeof arguments[0]?lr:lr.apply(null,arguments)};var Rr=function(t){function o(){for(var e=[],r=0;r<arguments.length;r++)e[r]=arguments[r];var n=t.apply(this,e)||this;return Object.setPrototypeOf(n,o.prototype),n}return hr(o,t),Object.defineProperty(o,Symbol.species,{get:function(){return o},enumerable:!1,configurable:!0}),o.prototype.concat=function(){for(var o=[],e=0;e<arguments.length;e++)o[e]=arguments[e];return t.prototype.concat.apply(this,o)},o.prototype.prepend=function(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];return 1===t.length&&Array.isArray(t[0])?new(o.bind.apply(o,gr([void 0],t[0].concat(this)))):new(o.bind.apply(o,gr([void 0],t.concat(this))))},o}(Array),Lr=function(t){function o(){for(var e=[],r=0;r<arguments.length;r++)e[r]=arguments[r];var n=t.apply(this,e)||this;return Object.setPrototypeOf(n,o.prototype),n}return hr(o,t),Object.defineProperty(o,Symbol.species,{get:function(){return o},enumerable:!1,configurable:!0}),o.prototype.concat=function(){for(var o=[],e=0;e<arguments.length;e++)o[e]=arguments[e];return t.prototype.concat.apply(this,o)},o.prototype.prepend=function(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];return 1===t.length&&Array.isArray(t[0])?new(o.bind.apply(o,gr([void 0],t[0].concat(this)))):new(o.bind.apply(o,gr([void 0],t.concat(this))))},o}(Array);function Ur(t){return ee(t)?Ye(t,(function(){})):t}function Ir(){return function(t){return function(t){void 0===t&&(t={});var o=t.thunk,e=void 0===o||o;t.immutableCheck,t.serializableCheck;var r=new Rr;e&&(!function(t){return"boolean"==typeof t}(e)?r.push(pr.withExtraArgument(e.extraArgument)):r.push(pr));return r}(t)}}function Wr(t){var o,e=Ir(),r=t||{},n=r.reducer,i=void 0===n?void 0:n,a=r.middleware,c=void 0===a?e():a,l=r.devTools,s=void 0===l||l,f=r.preloadedState,u=void 0===f?void 0:f,d=r.enhancers,p=void 0===d?void 0:d;if("function"==typeof i)o=i;else{if(!function(t){if("object"!=typeof t||null===t)return!1;var o=Object.getPrototypeOf(t);if(null===o)return!0;for(var e=o;null!==Object.getPrototypeOf(e);)e=Object.getPrototypeOf(e);return o===e}(i))throw new Error('"reducer" is a required argument, and must be a function or an object of functions that can be passed to combineReducers');o=cr(i)}var h=c;"function"==typeof h&&(h=h(e));var y=sr.apply(void 0,h),g=lr;s&&(g=Er(wr({trace:!1},"object"==typeof s&&s)));var b=new Lr(y),m=b;return Array.isArray(p)?m=gr([y],p):"function"==typeof p&&(m=p(b)),ar(o,u,g.apply(void 0,m))}function kr(t,o){function e(){for(var e=[],r=0;r<arguments.length;r++)e[r]=arguments[r];if(o){var n=o.apply(void 0,e);if(!n)throw new Error("prepareAction did not return an object");return wr(wr({type:t,payload:n.payload},"meta"in n&&{meta:n.meta}),"error"in n&&{error:n.error})}return{type:t,payload:e[0]}}return e.toString=function(){return""+t},e.type=t,e.match=function(o){return o.type===t},e}function Fr(t){var o,e={},r=[],n={addCase:function(t,o){var r="string"==typeof t?t:t.type;if(r in e)throw new Error("addCase cannot be called with two reducers for the same action type");return e[r]=o,n},addMatcher:function(t,o){return r.push({matcher:t,reducer:o}),n},addDefaultCase:function(t){return o=t,n}};return t(n),[e,r,o]}function Kr(t){var o=t.name;if(!o)throw new Error("`name` is a required option for createSlice");var e,r="function"==typeof t.initialState?t.initialState:Ur(t.initialState),n=t.reducers||{},i=Object.keys(n),a={},c={},l={};function s(){var o="function"==typeof t.extraReducers?Fr(t.extraReducers):[t.extraReducers],e=o[0],n=void 0===e?{}:e,i=o[1],a=void 0===i?[]:i,l=o[2],s=void 0===l?void 0:l,f=wr(wr({},n),c);return function(t,o,e,r){void 0===e&&(e=[]);var n,i="function"==typeof o?Fr(o):[o,e,r],a=i[0],c=i[1],l=i[2];if(function(t){return"function"==typeof t}(t))n=function(){return Ur(t())};else{var s=Ur(t);n=function(){return s}}function f(t,o){void 0===t&&(t=n());var e=gr([a[o.type]],c.filter((function(t){return(0,t.matcher)(o)})).map((function(t){return t.reducer})));return 0===e.filter((function(t){return!!t})).length&&(e=[l]),e.reduce((function(t,e){if(e){var r;if(oe(t))return void 0===(r=e(t,o))?t:r;if(ee(t))return Ye(t,(function(t){return e(t,o)}));if(void 0===(r=e(t,o))){if(null===t)return t;throw Error("A case reducer on a non-draftable value must not return undefined")}return r}return t}),t)}return f.getInitialState=n,f}(r,(function(t){for(var o in f)t.addCase(o,f[o]);for(var e=0,r=a;e<r.length;e++){var n=r[e];t.addMatcher(n.matcher,n.reducer)}s&&t.addDefaultCase(s)}))}return i.forEach((function(t){var e,r,i=n[t],s=o+"/"+t;"reducer"in i?(e=i.reducer,r=i.prepare):e=i,a[t]=e,c[s]=e,l[t]=r?kr(s,r):kr(s)})),{name:o,reducer:function(t,o){return e||(e=s()),e(t,o)},actions:l,caseReducers:a,getInitialState:function(){return e||(e=s()),e.getInitialState()}}}var Br=["name","message","stack","code"],Ar=function(t,o){this.payload=t,this.meta=o},jr=function(t,o){this.payload=t,this.meta=o},Zr=function(t){if("object"==typeof t&&null!==t){for(var o={},e=0,r=Br;e<r.length;e++){var n=r[e];"string"==typeof t[n]&&(o[n]=t[n])}return o}return{message:String(t)}};function Pr(t){if(t.meta&&t.meta.rejectedWithValue)throw t.payload;if(t.error)throw t.error;return t.payload}!function(){function t(t,o,e){var r=kr(t+"/fulfilled",(function(t,o,e,r){return{payload:t,meta:xr(wr({},r||{}),{arg:e,requestId:o,requestStatus:"fulfilled"})}})),n=kr(t+"/pending",(function(t,o,e){return{payload:void 0,meta:xr(wr({},e||{}),{arg:o,requestId:t,requestStatus:"pending"})}})),i=kr(t+"/rejected",(function(t,o,r,n,i){return{payload:n,error:(e&&e.serializeError||Zr)(t||"Rejected"),meta:xr(wr({},i||{}),{arg:r,requestId:o,rejectedWithValue:!!n,requestStatus:"rejected",aborted:"AbortError"===(null==t?void 0:t.name),condition:"ConditionError"===(null==t?void 0:t.name)})}})),a="undefined"!=typeof AbortController?AbortController:function(){function t(){this.signal={aborted:!1,addEventListener:function(){},dispatchEvent:function(){return!1},onabort:function(){},removeEventListener:function(){},reason:void 0,throwIfAborted:function(){}}}return t.prototype.abort=function(){},t}();return Object.assign((function(t){return function(c,l,s){var f,u=(null==e?void 0:e.idGenerator)?e.idGenerator(t):function(t){void 0===t&&(t=21);for(var o="",e=t;e--;)o+="ModuleSymbhasOwnPr-0123456789ABCDEFGHNRVfgctiUvz_KqYTJkLxpZXIjQW"[64*Math.random()|0];return o}(),d=new a;function p(t){f=t,d.abort()}var h=function(){return a=this,h=null,y=function(){var a,h,y,g,b,m;return yr(this,(function(O){switch(O.label){case 0:return O.trys.push([0,4,,5]),g=null==(a=null==e?void 0:e.condition)?void 0:a.call(e,t,{getState:l,extra:s}),null===(v=g)||"object"!=typeof v||"function"!=typeof v.then?[3,2]:[4,g];case 1:g=O.sent(),O.label=2;case 2:if(!1===g||d.signal.aborted)throw{name:"ConditionError",message:"Aborted due to condition callback returning false."};return b=new Promise((function(t,o){return d.signal.addEventListener("abort",(function(){return o({name:"AbortError",message:f||"Aborted"})}))})),c(n(u,t,null==(h=null==e?void 0:e.getPendingMeta)?void 0:h.call(e,{requestId:u,arg:t},{getState:l,extra:s}))),[4,Promise.race([b,Promise.resolve(o(t,{dispatch:c,getState:l,extra:s,requestId:u,signal:d.signal,abort:p,rejectWithValue:function(t,o){return new Ar(t,o)},fulfillWithValue:function(t,o){return new jr(t,o)}})).then((function(o){if(o instanceof Ar)throw o;return o instanceof jr?r(o.payload,u,t,o.meta):r(o,u,t)}))])];case 3:return y=O.sent(),[3,5];case 4:return m=O.sent(),y=m instanceof Ar?i(null,u,t,m.payload,m.meta):i(m,u,t),[3,5];case 5:return e&&!e.dispatchConditionRejection&&i.match(y)&&y.meta.condition||c(y),[2,y]}var v}))},new Promise((function(t,o){var e=function(t){try{n(y.next(t))}catch(t){o(t)}},r=function(t){try{n(y.throw(t))}catch(t){o(t)}},n=function(o){return o.done?t(o.value):Promise.resolve(o.value).then(e,r)};n((y=y.apply(a,h)).next())}));var a,h,y}();return Object.assign(h,{abort:p,requestId:u,arg:t,unwrap:function(){return h.then(Pr)}})}}),{pending:n,rejected:i,fulfilled:r,typePrefix:t})}t.withTypes=function(){return t}}();var Dr="listenerMiddleware";kr(Dr+"/add"),kr(Dr+"/removeAll"),kr(Dr+"/remove"),"function"==typeof queueMicrotask&&queueMicrotask.bind("undefined"!=typeof window?window:"undefined"!=typeof global?global:globalThis),function(){function t(t,o){var e=n[t];return e?e.enumerable=o:n[t]=e={configurable:!0,enumerable:o,get:function(){var o=this[ze];return Te.get(o,t)},set:function(o){var e=this[ze];Te.set(e,t,o)}},e}function o(t){for(var o=t.length-1;o>=0;o--){var n=t[o][ze];if(!n.P)switch(n.i){case 5:r(n)&&Le(n);break;case 4:e(n)&&Le(n)}}}function e(t){for(var o=t.t,e=t.k,r=_e(e),n=r.length-1;n>=0;n--){var i=r[n];if(i!==ze){var a=o[i];if(void 0===a&&!ie(o,i))return!0;var c=e[i],l=c&&c[ze];if(l?l.t!==a:!ce(c,a))return!0}}var s=!!o[ze];return r.length!==_e(o).length+(s?0:1)}function r(t){var o=t.k;if(o.length!==t.t.length)return!0;var e=Object.getOwnPropertyDescriptor(o,o.length-1);if(e&&!e.get)return!0;for(var r=0;r<o.length;r++)if(!o.hasOwnProperty(r))return!0;return!1}var n={};!function(t,o){$e[t]||($e[t]=o)}("ES5",{J:function(o,e){var r=Array.isArray(o),n=function(o,e){if(o){for(var r=Array(e.length),n=0;n<e.length;n++)Object.defineProperty(r,""+n,t(n,!0));return r}var i=He(e);delete i[ze];for(var a=_e(i),c=0;c<a.length;c++){var l=a[c];i[l]=t(l,o||!!i[l].enumerable)}return Object.create(Object.getPrototypeOf(e),i)}(r,o),i={i:r?5:4,A:e?e.A:ge(),P:!1,I:!1,R:{},l:e,t:o,k:n,o:null,g:!1,C:!1};return Object.defineProperty(n,ze,{value:i,writable:!0}),n},S:function(t,e,n){n?oe(e)&&e[ze].A===t&&o(t.p):(t.u&&function t(o){if(o&&"object"==typeof o){var e=o[ze];if(e){var n=e.t,i=e.k,a=e.R,c=e.i;if(4===c)re(i,(function(o){o!==ze&&(void 0!==n[o]||ie(n,o)?a[o]||t(i[o]):(a[o]=!0,Le(e)))})),re(n,(function(t){void 0!==i[t]||ie(i,t)||(a[t]=!1,Le(e))}));else if(5===c){if(r(e)&&(Le(e),a.length=!0),i.length<n.length)for(var l=i.length;l<n.length;l++)a[l]=!1;else for(var s=n.length;s<i.length;s++)a[s]=!0;for(var f=Math.min(i.length,n.length),u=0;u<f;u++)i.hasOwnProperty(u)||(a[u]=!0),void 0===a[u]&&t(i[u])}}}}(t.p[0]),o(t.p))},K:function(t){return 4===t.i?e(t):r(t)}})}(),window.ftReduxStores||(window.ftReduxStores={});class zr{static get(t){var o;const e="string"==typeof t?t:t.name,r="string"==typeof t?void 0:t,n=window.ftReduxStores[e];if(Go(n))return n;if(null==r)return;const i=Kr({...r,reducers:null!==(o=r.reducers)&&void 0!==o?o:{}}),a=Wr({reducer:(t,o)=>{var e;switch(o.type){case"CLEAR_FT_REDUX_STORE":return i.getInitialState();case"DEFAULT_STATE_FIELDS_VALUES_SETTER":return{...t,...null!==(e=o.overwrites)&&void 0!==e?e:{}};default:return i.reducer(t,o)}}});return window.ftReduxStores[r.name]=new zr(i,a)}constructor(t,o){this.reduxSlice=t,this.reduxStore=o,this.isFtReduxStore=!0,this.eventBus=document.createElement("event-bus"),this.actions=new Proxy(this.reduxSlice.actions,{get:(t,o,e)=>{const r=o,n=t[r];return n?(...t)=>{const o=n(...t);return this.reduxStore.dispatch(o),o}:t=>{this.setState({[r]:t})}}})}clear(){this.reduxStore.dispatch({type:"CLEAR_FT_REDUX_STORE"})}setState(t){this.reduxStore.dispatch({type:"DEFAULT_STATE_FIELDS_VALUES_SETTER",overwrites:t})}get dispatch(){throw new Error("Don't use this method, actions are automatically dispatched when called.")}[Symbol.observable](){return this.reduxStore[Symbol.observable]()}getState(){return this.reduxStore.getState()}replaceReducer(t){throw new Error("Not implemented yet.")}subscribe(t){return this.reduxStore.subscribe(t)}get name(){return this.reduxSlice.name}get reducer(){return this.reduxSlice.reducer}get caseReducers(){return this.reduxSlice.caseReducers}getInitialState(){return this.reduxSlice.getInitialState()}}const Mr=Symbol("elementInternals");var _r,Hr,$r;const Tr=navigator.vendor&&!!navigator.vendor.match(/apple/i)||"[object SafariRemoteNotification]"===(null!==($r=null===(Hr=null===(_r=window.safari)||void 0===_r?void 0:_r.pushNotification)||void 0===Hr?void 0:Hr.toString())&&void 0!==$r?$r:"");var Gr=Object.freeze({__proto__:null,CacheRegistry:class{constructor(){this.loaders={},this.content={},this.clearTimeouts={},this.finalContent=new Set}register(t,o){this.loaders[t]=o,this.finalContent.delete(t)}registerFinal(t,o){this.loaders[t]=o,this.finalContent.add(t)}clearAll(){for(let t in this.content)this.clear(t)}clear(t){this.finalContent.has(t)||this.forceClear(t)}forceClear(t){this.clearClearTimeout(t),this.content[t]instanceof _t&&this.content[t].cancel(),delete this.content[t]}clearClearTimeout(t){null!=this.clearTimeouts[t]&&(window.clearTimeout(this.clearTimeouts[t]),delete this.clearTimeouts[t])}set(t,o){this.forceClear(t),this.register(t,(async()=>o)),this.content[t]=o}setFinal(t,o){this.forceClear(t),this.registerFinal(t,(async()=>o)),this.content[t]=o}async get(t,o,e){if(void 0===this.content[t]){if(null==(o=null!=o?o:this.loaders[t]))throw new Error("Unknown cache key "+t);const r=Ht(o());return this.content[t]=r,r.then((o=>(this.content[t]=o,null!=e&&(this.clearClearTimeout(t),this.clearTimeouts[t]=window.setTimeout((()=>this.clear(t)),e)),o)))}if(this.content[t]instanceof Error)throw this.content[t];return this.content[t]}isResolvedValue(t){return!(null==t||t instanceof Promise||t instanceof Error)}getNow(t){if(this.isResolvedValue(this.content[t]))return this.content[t]}has(t){return null!=this.content[t]}resolvedKeys(){return Object.keys(this.content).filter((t=>this.isResolvedValue(this.content[t])))}resolvedValues(){return Object.values(this.content).filter((t=>this.isResolvedValue(t)))}keys(){return Object.keys(this.content)}values(){return Object.values(this.content)}},CancelablePromise:_t,CanceledPromiseError:Mt,Debouncer:$t,FtCssVariableFactory:Yt,FtLitElement:_o,FtLitElementRedux:class extends _o{constructor(){super(...arguments),this[Vo]=new Map,this[qo]=new Map,this[Yo]=[]}update(t){var o;super.update(t),(null===(o=this.reduxReactiveProperties)||void 0===o?void 0:o.some((o=>t.has(o))))&&this.updateFromStores()}getUnnamedStore(){if(this[Qo].size>1)throw new Error("Cannot resolve unnamed store when multiple stores are configured.");return[...this[Qo].values()][0]}getStore(t){return null==t?this.getUnnamedStore():this[Qo].get(t)}addStore(t,o){var e;o=null!==(e=null!=o?o:Go(t)?t.name:void 0)&&void 0!==e?e:"default-store",this.unsubscribeFromStore(o),this.setupStore(o,t)}removeStore(t){const o="string"==typeof t?t:t.name;this.unsubscribeFromStore(o),this[Qo].delete(o)}setupStore(t,o){this[Qo].set(t,o),this.subscribeToStore(t,o),this.updateFromStores()}setupStores(){this.unsubscribeFromStores(),this[Qo].forEach(((t,o)=>this.subscribeToStore(o,t))),this.updateFromStores()}updateFromStores(){this.reduxProperties&&this.reduxProperties.forEach(((t,o)=>{const e=this.constructor.getPropertyOptions(o);if(!(null==e?void 0:e.attribute)||!this.hasAttribute("string"==typeof(null==e?void 0:e.attribute)?e.attribute:o)){const e=this.getStore(t.store);e&&(t.store?this[Xo].has(t.store):this[Xo].size>0)&&(this[o]=t.selector(e.getState(),this))}}))}subscribeToStore(t,o){var e;this[Xo].set(t,o.subscribe((()=>this.updateFromStores()))),Go(o)&&o.eventBus&&(null===(e=this.reduxEventListeners)||void 0===e||e.forEach(((t,e)=>{if("function"==typeof this[e]&&(!t.store||o.name===t.store)){const r=t=>this[e](t);o.eventBus.addEventListener(t.eventName,r),this[Jo].push((()=>o.eventBus.removeEventListener(t.eventName,r)))}}))),this.onStoreAvailable(t)}unsubscribeFromStores(){this[Xo].forEach(((t,o)=>this.unsubscribeFromStore(o))),this[Jo].forEach((t=>t())),this[Jo]=[]}unsubscribeFromStore(t){this[Xo].has(t)&&this[Xo].get(t)(),this[Xo].delete(t)}onStoreAvailable(t){}connectedCallback(){super.connectedCallback(),this.setupStores()}disconnectedCallback(){super.disconnectedCallback(),this.unsubscribeFromStores()}},FtNotificationEvent:Ko,FtReduxStore:zr,ParametrizedLabelResolver:class{constructor(t,o){this.defaultLabels=t,this.labels=o}resolve(t,...o){var e,r;t=this.resolvePluralKey(t,o);let n=null!==(r=null!==(e=this.labels[t])&&void 0!==e?e:this.defaultLabels[t])&&void 0!==r?r:"";return o.forEach(((t,o)=>n=n.replace(new RegExp(`\\{${o}([^}]*)\\}`,"g"),((o,e)=>this.formatValue(t,e))))),n}resolvePluralKey(t,o){for(let e of o)if("number"==typeof e){const o=`${String(t)}[\\=${e}]`;if(o in this.labels||o in this.defaultLabels)return o}return t}formatValue(t,o){return t instanceof Date?this.formatDate(t,o):null!=t?t:""}formatDate(t,o){const e=e=>(null==o?void 0:o.includes("date"))?t.toLocaleDateString(e):(null==o?void 0:o.includes("time"))?t.toLocaleTimeString(e):t.toLocaleString(e);try{return e(document.documentElement.lang)}catch(t){return e()}}},PostResizeEvent:Ao,PreResizeEvent:Bo,ScopedRegistryLitElement:jo,button:Co,cancelable:Ht,chart:Eo,checkbox:Uo,chip:Ro,clearAllStores:function(){var t;for(let o of Object.values(null!==(t=window.ftReduxStores)&&void 0!==t?t:{}))Go(o)&&o.clear()},customElement:t=>o=>{window.customElements.get(t)||window.customElements.define(t,o)},dateReviver:function(...t){return function(o,e){return t.includes(o)?Tt(e):e}},deepEqual:Gt,delay:t=>new Promise((o=>setTimeout(o,t))),designSystemVariables:Fo,eventPathContainsMatchingElement:function(t,o,e){if(o.length>0){const r=t.composedPath();for(let t of r){if(t===e)return!1;if(t.matches&&o.some((o=>t.matches(o))))return!0}}return!1},flatDeep:function t(o,e){return o.flatMap((o=>[o,...t(e(o),e)]))},foundation:Jt,isFtReduxStore:Go,isSafari:Tr,jsonProperty:Vt,noTextSelect:Ho,notice:Lo,notification:ko,parseDate:Tt,radio:Wo,redux:t=>{const o=null!=t?t:{};return(t,e)=>{var r;const n={hasChanged:(t,o)=>!Gt(t,o),attribute:!1,...o};ht(n)(t,e);const i=t;i.reduxProperties=i.reduxProperties||new Map,i.reduxProperties.set(e,{selector:null!==(r=o.selector)&&void 0!==r?r:t=>t[e],store:o.store})}},reduxEventListener:t=>(o,e)=>{const r=o;r.reduxEventListeners=r.reduxEventListeners||new Map,r.reduxEventListeners.set(e,t)},reduxReactive:()=>(t,o)=>{const e=t;e.reduxReactiveProperties=e.reduxReactiveProperties||[],e.reduxReactiveProperties.push(o)},safariEllipsisFix:To,semantic:No,serializeRequest:function(t,o){var e;const r=new URLSearchParams({"content-lang":null!==(e=o.contentLocale)&&void 0!==e?e:"all",query:o.query});if(o.filters.length>0){const t=o.filters.map((t=>{const o=t.values.map((t=>t.replace(/_/g,"\\\\\\\\_").replace(/~/g,"\\\\~").replace(/\*/g,"\\*"))).map((t=>encodeURIComponent(function(t){return`"${t}"`}(t)))).join("_");return`${t.key}~${o}`})).join("*");r.append("filters",t)}return new URL(`${t.replace(/\/+$/,"")}/search?${r.toString()}`).href},setVariable:function(t,o){return qt(`${t.name}: ${o}`)},switch_:xo,tabs:wo,toFtFormComponent:function(t,o){return class extends t{static get formAssociated(){return!0}get form(){return this[Mr].form}constructor(...t){super(t),this[Mr]=this.attachInternals(),this[Mr].role=o}setFormValue(t){this[Mr].setFormValue(t)}}},toggle:Io,typographies:So,typographyBody1Medium:ro,typographyBody1Regular:eo,typographyBody1Semibold:no,typographyBody2Medium:ao,typographyBody2Regular:io,typographyBody2Semibold:co,typographyCaption1Bold:bo,typographyCaption1Medium:yo,typographyCaption1Semibold:go,typographyCaption2Bold:vo,typographyCaption2Medium:mo,typographyCaption2Semibold:Oo,typographyDisplay:Xt,typographyLabel1Bold:fo,typographyLabel1Medium:lo,typographyLabel1Semibold:so,typographyLabel2Bold:ho,typographyLabel2Medium:uo,typographyLabel2Semibold:po,typographyTitle1:Qt,typographyTitle2:to,typographyTitle3:oo,typographyVariants:["display","title-1","title-2","title-3","body-1","body-2","label-1","label-2","caption-1","caption-2"],wordWrap:$o});t.lit=dt,t.litClassMap=Kt,t.litDecorators=Ot,t.litRepeat=kt,t.litStyleMap=Zt,t.litUnsafeHTML=zt,t.wcUtils=Gr}));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluid-topics/ft-wc-utils",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.60",
|
|
4
4
|
"description": "Internal web components tools",
|
|
5
5
|
"author": "Fluid Topics <devtopics@antidot.net>",
|
|
6
6
|
"license": "ISC",
|
|
@@ -13,9 +13,10 @@
|
|
|
13
13
|
"lib/*"
|
|
14
14
|
],
|
|
15
15
|
"dependencies": {
|
|
16
|
+
"@fluid-topics/design-system-variables": "0.0.17",
|
|
16
17
|
"@fluid-topics/public-api": "1.0.45",
|
|
17
18
|
"@reduxjs/toolkit": "1.9.5",
|
|
18
19
|
"lit": "2.7.2"
|
|
19
20
|
},
|
|
20
|
-
"gitHead": "
|
|
21
|
+
"gitHead": "8eb7c2ef052f5d3f61ed0bf150fcaee093805450"
|
|
21
22
|
}
|