@duskmoon-dev/el-core 0.4.0 → 0.5.0
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/dist/cjs/index.js +49 -46
- package/dist/cjs/index.js.map +3 -3
- package/dist/esm/index.js +49 -46
- package/dist/esm/index.js.map +3 -3
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types/index.d.ts +1 -1
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/styles.d.ts +9 -0
- package/dist/types/styles.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/cjs/index.js
CHANGED
|
@@ -30,6 +30,7 @@ var __export = (target, all) => {
|
|
|
30
30
|
var exports_src = {};
|
|
31
31
|
__export(exports_src, {
|
|
32
32
|
resetStyles: () => resetStyles,
|
|
33
|
+
lightThemeColors: () => lightThemeColors,
|
|
33
34
|
defaultTheme: () => defaultTheme,
|
|
34
35
|
cssVars: () => cssVars,
|
|
35
36
|
css: () => css,
|
|
@@ -64,39 +65,7 @@ function cssVars(vars) {
|
|
|
64
65
|
}
|
|
65
66
|
var defaultTheme = css`
|
|
66
67
|
:host {
|
|
67
|
-
/*
|
|
68
|
-
--color-primary: oklch(60% 0.15 250);
|
|
69
|
-
--color-primary-content: white;
|
|
70
|
-
--color-on-primary: white;
|
|
71
|
-
|
|
72
|
-
/* Secondary colors */
|
|
73
|
-
--color-secondary: oklch(55% 0.1 250);
|
|
74
|
-
--color-secondary-content: white;
|
|
75
|
-
--color-on-secondary: white;
|
|
76
|
-
|
|
77
|
-
/* Tertiary colors */
|
|
78
|
-
--color-tertiary: oklch(50% 0.12 300);
|
|
79
|
-
--color-tertiary-content: white;
|
|
80
|
-
--color-on-tertiary: white;
|
|
81
|
-
|
|
82
|
-
/* Surface colors */
|
|
83
|
-
--color-surface: white;
|
|
84
|
-
--color-surface-container: oklch(97% 0.01 250);
|
|
85
|
-
--color-surface-container-low: oklch(98% 0.005 250);
|
|
86
|
-
--color-on-surface: oklch(25% 0.02 250);
|
|
87
|
-
--color-on-surface-variant: oklch(45% 0.02 250);
|
|
88
|
-
|
|
89
|
-
/* Outline colors */
|
|
90
|
-
--color-outline: oklch(75% 0.02 250);
|
|
91
|
-
--color-outline-variant: oklch(85% 0.01 250);
|
|
92
|
-
|
|
93
|
-
/* Semantic colors */
|
|
94
|
-
--color-success: oklch(60% 0.15 145);
|
|
95
|
-
--color-warning: oklch(75% 0.15 85);
|
|
96
|
-
--color-error: oklch(55% 0.2 25);
|
|
97
|
-
--color-info: oklch(60% 0.15 250);
|
|
98
|
-
|
|
99
|
-
/* Typography */
|
|
68
|
+
/* Typography - safe to set defaults */
|
|
100
69
|
--font-family: system-ui, -apple-system, sans-serif;
|
|
101
70
|
--font-size-xs: 0.75rem;
|
|
102
71
|
--font-size-sm: 0.875rem;
|
|
@@ -108,35 +77,69 @@ var defaultTheme = css`
|
|
|
108
77
|
--font-weight-semibold: 600;
|
|
109
78
|
--font-weight-bold: 700;
|
|
110
79
|
|
|
111
|
-
/* Spacing */
|
|
80
|
+
/* Spacing - safe to set defaults */
|
|
112
81
|
--spacing-xs: 0.25rem;
|
|
113
82
|
--spacing-sm: 0.5rem;
|
|
114
83
|
--spacing-md: 1rem;
|
|
115
84
|
--spacing-lg: 1.5rem;
|
|
116
85
|
--spacing-xl: 2rem;
|
|
117
86
|
|
|
118
|
-
/* Border Radius */
|
|
87
|
+
/* Border Radius - safe to set defaults */
|
|
119
88
|
--radius-sm: 0.25rem;
|
|
120
89
|
--radius-md: 0.5rem;
|
|
121
90
|
--radius-lg: 0.75rem;
|
|
122
91
|
--radius-xl: 1rem;
|
|
123
92
|
--radius-full: 9999px;
|
|
124
93
|
|
|
125
|
-
/*
|
|
126
|
-
--shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
|
|
127
|
-
--shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
|
|
128
|
-
--shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
|
|
129
|
-
|
|
130
|
-
/* Transitions */
|
|
94
|
+
/* Transitions - safe to set defaults */
|
|
131
95
|
--transition-fast: 150ms ease;
|
|
132
96
|
--transition-normal: 200ms ease;
|
|
133
97
|
--transition-slow: 300ms ease;
|
|
134
|
-
|
|
135
|
-
/* Focus */
|
|
136
|
-
--focus-ring: 0 0 0 2px var(--color-primary);
|
|
137
|
-
--focus-ring-offset: 0 0 0 2px white, 0 0 0 4px var(--color-primary);
|
|
138
98
|
}
|
|
139
99
|
`;
|
|
100
|
+
var lightThemeColors = `
|
|
101
|
+
/* Primary colors */
|
|
102
|
+
--color-primary: oklch(60% 0.15 250);
|
|
103
|
+
--color-primary-content: white;
|
|
104
|
+
--color-on-primary: white;
|
|
105
|
+
|
|
106
|
+
/* Secondary colors */
|
|
107
|
+
--color-secondary: oklch(55% 0.1 250);
|
|
108
|
+
--color-secondary-content: white;
|
|
109
|
+
--color-on-secondary: white;
|
|
110
|
+
|
|
111
|
+
/* Tertiary colors */
|
|
112
|
+
--color-tertiary: oklch(50% 0.12 300);
|
|
113
|
+
--color-tertiary-content: white;
|
|
114
|
+
--color-on-tertiary: white;
|
|
115
|
+
|
|
116
|
+
/* Surface colors */
|
|
117
|
+
--color-surface: white;
|
|
118
|
+
--color-surface-container: oklch(97% 0.01 250);
|
|
119
|
+
--color-surface-container-low: oklch(98% 0.005 250);
|
|
120
|
+
--color-surface-container-high: oklch(94% 0.01 250);
|
|
121
|
+
--color-on-surface: oklch(25% 0.02 250);
|
|
122
|
+
--color-on-surface-variant: oklch(45% 0.02 250);
|
|
123
|
+
|
|
124
|
+
/* Outline colors */
|
|
125
|
+
--color-outline: oklch(75% 0.02 250);
|
|
126
|
+
--color-outline-variant: oklch(85% 0.01 250);
|
|
127
|
+
|
|
128
|
+
/* Semantic colors */
|
|
129
|
+
--color-success: oklch(60% 0.15 145);
|
|
130
|
+
--color-warning: oklch(75% 0.15 85);
|
|
131
|
+
--color-error: oklch(55% 0.2 25);
|
|
132
|
+
--color-info: oklch(60% 0.15 250);
|
|
133
|
+
|
|
134
|
+
/* Shadows */
|
|
135
|
+
--shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
|
|
136
|
+
--shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
|
|
137
|
+
--shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
|
|
138
|
+
|
|
139
|
+
/* Focus */
|
|
140
|
+
--focus-ring: 0 0 0 2px var(--color-primary);
|
|
141
|
+
--focus-ring-offset: 0 0 0 2px white, 0 0 0 4px var(--color-primary);
|
|
142
|
+
`;
|
|
140
143
|
var resetStyles = css`
|
|
141
144
|
*,
|
|
142
145
|
*::before,
|
|
@@ -302,5 +305,5 @@ function toKebabCase(str) {
|
|
|
302
305
|
return str.replace(/([A-Z])/g, "-$1").toLowerCase();
|
|
303
306
|
}
|
|
304
307
|
|
|
305
|
-
//# debugId=
|
|
308
|
+
//# debugId=EB8B2E4AC5FF05A164756E2164756E21
|
|
306
309
|
//# sourceMappingURL=index.js.map
|
package/dist/cjs/index.js.map
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../src/styles.ts", "../../src/base-element.ts"],
|
|
4
4
|
"sourcesContent": [
|
|
5
|
-
"/**\n * CSS-in-JS utilities for constructable stylesheets\n */\n\n/**\n * Cache for constructed stylesheets\n */\nconst styleSheetCache = new WeakMap<TemplateStringsArray, CSSStyleSheet>();\n\n/**\n * Creates a CSSStyleSheet from a template literal\n * Results are cached for performance\n *\n * @example\n * ```ts\n * const styles = css`\n * :host {\n * display: block;\n * }\n * `;\n * ```\n *\n * @param strings - Template literal strings\n * @param values - Interpolated values\n * @returns A CSSStyleSheet instance\n */\nexport function css(strings: TemplateStringsArray, ...values: (string | number)[]): CSSStyleSheet {\n // Check cache first\n const cached = styleSheetCache.get(strings);\n if (cached && values.length === 0) {\n return cached;\n }\n\n // Construct the CSS string\n let cssText = strings[0];\n for (let i = 0; i < values.length; i++) {\n cssText += String(values[i]) + strings[i + 1];\n }\n\n // Create and cache the stylesheet\n const sheet = new CSSStyleSheet();\n sheet.replaceSync(cssText);\n\n // Only cache if there are no dynamic values\n if (values.length === 0) {\n styleSheetCache.set(strings, sheet);\n }\n\n return sheet;\n}\n\n/**\n * Combines multiple CSSStyleSheet instances into an array\n * Useful for composing styles from multiple sources\n *\n * @param sheets - Stylesheets to combine\n * @returns Array of stylesheets\n */\nexport function combineStyles(...sheets: CSSStyleSheet[]): CSSStyleSheet[] {\n return sheets;\n}\n\n/**\n * Creates CSS custom property declarations from an object\n *\n * @example\n * ```ts\n * const vars = cssVars({\n * 'color-primary': 'oklch(60% 0.15 250)',\n * 'spacing-md': '1rem'\n * });\n * // Returns: '--color-primary: oklch(60% 0.15 250); --spacing-md: 1rem;'\n * ```\n *\n * @param vars - Object of variable names to values\n * @returns CSS custom property declarations string\n */\nexport function cssVars(vars: Record<string, string | number>): string {\n return Object.entries(vars)\n .map(([key, value]) => `--${key}: ${value}`)\n .join('; ');\n}\n\n/**\n * Default theme CSS custom properties\n * Uses --color-* naming to be compatible with @duskmoon-dev/core\n */\nexport const defaultTheme = css`\n :host {\n /* Primary colors */\n
|
|
5
|
+
"/**\n * CSS-in-JS utilities for constructable stylesheets\n */\n\n/**\n * Cache for constructed stylesheets\n */\nconst styleSheetCache = new WeakMap<TemplateStringsArray, CSSStyleSheet>();\n\n/**\n * Creates a CSSStyleSheet from a template literal\n * Results are cached for performance\n *\n * @example\n * ```ts\n * const styles = css`\n * :host {\n * display: block;\n * }\n * `;\n * ```\n *\n * @param strings - Template literal strings\n * @param values - Interpolated values\n * @returns A CSSStyleSheet instance\n */\nexport function css(strings: TemplateStringsArray, ...values: (string | number)[]): CSSStyleSheet {\n // Check cache first\n const cached = styleSheetCache.get(strings);\n if (cached && values.length === 0) {\n return cached;\n }\n\n // Construct the CSS string\n let cssText = strings[0];\n for (let i = 0; i < values.length; i++) {\n cssText += String(values[i]) + strings[i + 1];\n }\n\n // Create and cache the stylesheet\n const sheet = new CSSStyleSheet();\n sheet.replaceSync(cssText);\n\n // Only cache if there are no dynamic values\n if (values.length === 0) {\n styleSheetCache.set(strings, sheet);\n }\n\n return sheet;\n}\n\n/**\n * Combines multiple CSSStyleSheet instances into an array\n * Useful for composing styles from multiple sources\n *\n * @param sheets - Stylesheets to combine\n * @returns Array of stylesheets\n */\nexport function combineStyles(...sheets: CSSStyleSheet[]): CSSStyleSheet[] {\n return sheets;\n}\n\n/**\n * Creates CSS custom property declarations from an object\n *\n * @example\n * ```ts\n * const vars = cssVars({\n * 'color-primary': 'oklch(60% 0.15 250)',\n * 'spacing-md': '1rem'\n * });\n * // Returns: '--color-primary: oklch(60% 0.15 250); --spacing-md: 1rem;'\n * ```\n *\n * @param vars - Object of variable names to values\n * @returns CSS custom property declarations string\n */\nexport function cssVars(vars: Record<string, string | number>): string {\n return Object.entries(vars)\n .map(([key, value]) => `--${key}: ${value}`)\n .join('; ');\n}\n\n/**\n * Default theme CSS custom properties\n * Uses --color-* naming to be compatible with @duskmoon-dev/core\n *\n * Note: Color variables are NOT set here to allow inheritance from document.\n * Document should provide these via :root or [data-theme] selectors.\n * Only non-color design tokens are set as defaults.\n */\nexport const defaultTheme = css`\n :host {\n /* Typography - safe to set defaults */\n --font-family: system-ui, -apple-system, sans-serif;\n --font-size-xs: 0.75rem;\n --font-size-sm: 0.875rem;\n --font-size-md: 1rem;\n --font-size-lg: 1.125rem;\n --font-size-xl: 1.25rem;\n --font-weight-normal: 400;\n --font-weight-medium: 500;\n --font-weight-semibold: 600;\n --font-weight-bold: 700;\n\n /* Spacing - safe to set defaults */\n --spacing-xs: 0.25rem;\n --spacing-sm: 0.5rem;\n --spacing-md: 1rem;\n --spacing-lg: 1.5rem;\n --spacing-xl: 2rem;\n\n /* Border Radius - safe to set defaults */\n --radius-sm: 0.25rem;\n --radius-md: 0.5rem;\n --radius-lg: 0.75rem;\n --radius-xl: 1rem;\n --radius-full: 9999px;\n\n /* Transitions - safe to set defaults */\n --transition-fast: 150ms ease;\n --transition-normal: 200ms ease;\n --transition-slow: 300ms ease;\n }\n`;\n\n/**\n * Light theme color defaults\n * Apply this to :root or document for light theme\n */\nexport const lightThemeColors = `\n /* Primary colors */\n --color-primary: oklch(60% 0.15 250);\n --color-primary-content: white;\n --color-on-primary: white;\n\n /* Secondary colors */\n --color-secondary: oklch(55% 0.1 250);\n --color-secondary-content: white;\n --color-on-secondary: white;\n\n /* Tertiary colors */\n --color-tertiary: oklch(50% 0.12 300);\n --color-tertiary-content: white;\n --color-on-tertiary: white;\n\n /* Surface colors */\n --color-surface: white;\n --color-surface-container: oklch(97% 0.01 250);\n --color-surface-container-low: oklch(98% 0.005 250);\n --color-surface-container-high: oklch(94% 0.01 250);\n --color-on-surface: oklch(25% 0.02 250);\n --color-on-surface-variant: oklch(45% 0.02 250);\n\n /* Outline colors */\n --color-outline: oklch(75% 0.02 250);\n --color-outline-variant: oklch(85% 0.01 250);\n\n /* Semantic colors */\n --color-success: oklch(60% 0.15 145);\n --color-warning: oklch(75% 0.15 85);\n --color-error: oklch(55% 0.2 25);\n --color-info: oklch(60% 0.15 250);\n\n /* Shadows */\n --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);\n --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);\n --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);\n\n /* Focus */\n --focus-ring: 0 0 0 2px var(--color-primary);\n --focus-ring-offset: 0 0 0 2px white, 0 0 0 4px var(--color-primary);\n`;\n\n/**\n * Reset styles for Shadow DOM elements\n */\nexport const resetStyles = css`\n *,\n *::before,\n *::after {\n box-sizing: border-box;\n }\n\n :host {\n font-family: var(--font-family, system-ui, -apple-system, sans-serif);\n }\n\n :host([hidden]) {\n display: none !important;\n }\n`;\n",
|
|
6
6
|
"/**\n * Base class for all DuskMoon custom elements\n */\n\nimport { resetStyles, defaultTheme } from './styles.js';\n\n/**\n * Property definition for reactive properties\n */\nexport interface PropertyDefinition {\n /** Attribute name (defaults to kebab-case of property name) */\n attribute?: string | false;\n /** Whether changes should reflect to attribute */\n reflect?: boolean;\n /** Property type for conversion */\n type?: typeof String | typeof Number | typeof Boolean | typeof Object | typeof Array;\n /** Default value */\n default?: unknown;\n}\n\n/**\n * Map of property names to their definitions\n */\nexport type PropertyDefinitions = Record<string, PropertyDefinition>;\n\n/**\n * Base class for all DuskMoon custom elements\n *\n * Provides:\n * - Shadow DOM setup with adoptedStyleSheets\n * - Reactive properties with attribute reflection\n * - Style injection utilities\n * - Common lifecycle methods\n *\n * @example\n * ```ts\n * class MyElement extends BaseElement {\n * static properties = {\n * name: { type: String, reflect: true }\n * };\n *\n * constructor() {\n * super();\n * this.attachStyles(myStyles);\n * }\n *\n * render() {\n * return `<div>Hello, ${this.name}!</div>`;\n * }\n * }\n * ```\n */\nexport abstract class BaseElement extends HTMLElement {\n /**\n * Property definitions for reactive properties\n * Override in subclasses to define properties\n */\n static properties: PropertyDefinitions = {};\n\n /**\n * Observed attributes derived from property definitions\n */\n static get observedAttributes(): string[] {\n return Object.entries(this.properties)\n .filter(([, def]) => def.attribute !== false)\n .map(([name, def]) => def.attribute || toKebabCase(name));\n }\n\n /**\n * Shadow root for the element\n */\n declare shadowRoot: ShadowRoot;\n\n /**\n * Stylesheets attached to this element\n */\n private _styles: CSSStyleSheet[] = [];\n\n /**\n * Whether the element has been connected to the DOM\n */\n private _isConnected = false;\n\n /**\n * Queue of pending property updates\n */\n private _pendingUpdate = false;\n\n /**\n * Internal property values storage\n */\n private _propertyValues = new Map<string, unknown>();\n\n constructor() {\n super();\n this.attachShadow({ mode: 'open' });\n\n // Apply default styles\n this._styles = [resetStyles, defaultTheme];\n this.shadowRoot.adoptedStyleSheets = [...this._styles];\n\n // Initialize properties\n this._initializeProperties();\n }\n\n /**\n * Initialize reactive properties from static definitions\n */\n private _initializeProperties(): void {\n const ctor = this.constructor as typeof BaseElement;\n const properties = ctor.properties;\n\n for (const [name, def] of Object.entries(properties)) {\n // Set default value\n if (def.default !== undefined) {\n this._propertyValues.set(name, def.default);\n }\n\n // Define property accessor\n Object.defineProperty(this, name, {\n get: () => this._propertyValues.get(name),\n set: (value: unknown) => {\n const oldValue = this._propertyValues.get(name);\n if (oldValue === value) return;\n\n this._propertyValues.set(name, value);\n\n // Reflect to attribute if needed\n if (def.reflect && def.attribute !== false) {\n const attrName = def.attribute || toKebabCase(name);\n this._reflectToAttribute(attrName, value, def.type);\n }\n\n // Schedule update\n this._scheduleUpdate();\n },\n enumerable: true,\n configurable: true,\n });\n }\n }\n\n /**\n * Reflect a property value to an attribute\n */\n private _reflectToAttribute(\n attrName: string,\n value: unknown,\n type?: typeof String | typeof Number | typeof Boolean | typeof Object | typeof Array,\n ): void {\n if (value === null || value === undefined) {\n this.removeAttribute(attrName);\n return;\n }\n\n if (type === Boolean) {\n if (value) {\n this.setAttribute(attrName, '');\n } else {\n this.removeAttribute(attrName);\n }\n return;\n }\n\n if (type === Object || type === Array) {\n this.setAttribute(attrName, JSON.stringify(value));\n return;\n }\n\n this.setAttribute(attrName, String(value));\n }\n\n /**\n * Convert an attribute value to a property value\n */\n private _attributeToProperty(\n value: string | null,\n type?: typeof String | typeof Number | typeof Boolean | typeof Object | typeof Array,\n ): unknown {\n if (value === null) {\n return type === Boolean ? false : undefined;\n }\n\n switch (type) {\n case Boolean:\n return true;\n case Number:\n return Number(value);\n case Object:\n case Array:\n try {\n return JSON.parse(value);\n } catch {\n return undefined;\n }\n default:\n return value;\n }\n }\n\n /**\n * Schedule an update for the next microtask\n */\n private _scheduleUpdate(): void {\n if (this._pendingUpdate) return;\n this._pendingUpdate = true;\n\n queueMicrotask(() => {\n this._pendingUpdate = false;\n if (this._isConnected) {\n this.update();\n }\n });\n }\n\n /**\n * Attach additional stylesheets to the Shadow DOM\n *\n * @param styles - CSSStyleSheet or array of stylesheets to attach\n */\n protected attachStyles(styles: CSSStyleSheet | CSSStyleSheet[]): void {\n const sheets = Array.isArray(styles) ? styles : [styles];\n this._styles = [...this._styles, ...sheets];\n this.shadowRoot.adoptedStyleSheets = [...this._styles];\n }\n\n /**\n * Called when the element is connected to the DOM\n */\n connectedCallback(): void {\n this._isConnected = true;\n this.update();\n }\n\n /**\n * Called when the element is disconnected from the DOM\n */\n disconnectedCallback(): void {\n this._isConnected = false;\n }\n\n /**\n * Called when an observed attribute changes\n */\n attributeChangedCallback(name: string, oldValue: string | null, newValue: string | null): void {\n if (oldValue === newValue) return;\n\n const ctor = this.constructor as typeof BaseElement;\n const properties = ctor.properties;\n\n // Find the property for this attribute\n for (const [propName, def] of Object.entries(properties)) {\n const attrName = def.attribute || toKebabCase(propName);\n if (attrName === name) {\n const value = this._attributeToProperty(newValue, def.type);\n this._propertyValues.set(propName, value);\n this._scheduleUpdate();\n break;\n }\n }\n }\n\n /**\n * Called when the element should update its DOM\n * Override to customize update behavior\n */\n protected update(): void {\n const content = this.render();\n if (content !== undefined) {\n this.shadowRoot.innerHTML = content;\n }\n }\n\n /**\n * Returns the HTML content for the element\n * Override in subclasses to define the element's template\n *\n * @returns HTML string or undefined if no update needed\n */\n protected render(): string | undefined {\n return undefined;\n }\n\n /**\n * Emit a custom event from this element\n *\n * @param name - Event name\n * @param detail - Event detail data\n * @param options - Additional event options\n */\n protected emit<T>(name: string, detail?: T, options?: Omit<CustomEventInit, 'detail'>): boolean {\n const event = new CustomEvent(name, {\n bubbles: true,\n composed: true,\n cancelable: true,\n ...options,\n detail,\n });\n return this.dispatchEvent(event);\n }\n\n /**\n * Query an element in the Shadow DOM\n */\n protected query<T extends Element>(selector: string): T | null {\n return this.shadowRoot.querySelector<T>(selector);\n }\n\n /**\n * Query all matching elements in the Shadow DOM\n */\n protected queryAll<T extends Element>(selector: string): NodeListOf<T> {\n return this.shadowRoot.querySelectorAll<T>(selector);\n }\n}\n\n/**\n * Convert a camelCase string to kebab-case\n */\nfunction toKebabCase(str: string): string {\n return str.replace(/([A-Z])/g, '-$1').toLowerCase();\n}\n"
|
|
7
7
|
],
|
|
8
|
-
"mappings": "
|
|
9
|
-
"debugId": "
|
|
8
|
+
"mappings": "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",
|
|
9
|
+
"debugId": "EB8B2E4AC5FF05A164756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
package/dist/esm/index.js
CHANGED
|
@@ -24,39 +24,7 @@ function cssVars(vars) {
|
|
|
24
24
|
}
|
|
25
25
|
var defaultTheme = css`
|
|
26
26
|
:host {
|
|
27
|
-
/*
|
|
28
|
-
--color-primary: oklch(60% 0.15 250);
|
|
29
|
-
--color-primary-content: white;
|
|
30
|
-
--color-on-primary: white;
|
|
31
|
-
|
|
32
|
-
/* Secondary colors */
|
|
33
|
-
--color-secondary: oklch(55% 0.1 250);
|
|
34
|
-
--color-secondary-content: white;
|
|
35
|
-
--color-on-secondary: white;
|
|
36
|
-
|
|
37
|
-
/* Tertiary colors */
|
|
38
|
-
--color-tertiary: oklch(50% 0.12 300);
|
|
39
|
-
--color-tertiary-content: white;
|
|
40
|
-
--color-on-tertiary: white;
|
|
41
|
-
|
|
42
|
-
/* Surface colors */
|
|
43
|
-
--color-surface: white;
|
|
44
|
-
--color-surface-container: oklch(97% 0.01 250);
|
|
45
|
-
--color-surface-container-low: oklch(98% 0.005 250);
|
|
46
|
-
--color-on-surface: oklch(25% 0.02 250);
|
|
47
|
-
--color-on-surface-variant: oklch(45% 0.02 250);
|
|
48
|
-
|
|
49
|
-
/* Outline colors */
|
|
50
|
-
--color-outline: oklch(75% 0.02 250);
|
|
51
|
-
--color-outline-variant: oklch(85% 0.01 250);
|
|
52
|
-
|
|
53
|
-
/* Semantic colors */
|
|
54
|
-
--color-success: oklch(60% 0.15 145);
|
|
55
|
-
--color-warning: oklch(75% 0.15 85);
|
|
56
|
-
--color-error: oklch(55% 0.2 25);
|
|
57
|
-
--color-info: oklch(60% 0.15 250);
|
|
58
|
-
|
|
59
|
-
/* Typography */
|
|
27
|
+
/* Typography - safe to set defaults */
|
|
60
28
|
--font-family: system-ui, -apple-system, sans-serif;
|
|
61
29
|
--font-size-xs: 0.75rem;
|
|
62
30
|
--font-size-sm: 0.875rem;
|
|
@@ -68,35 +36,69 @@ var defaultTheme = css`
|
|
|
68
36
|
--font-weight-semibold: 600;
|
|
69
37
|
--font-weight-bold: 700;
|
|
70
38
|
|
|
71
|
-
/* Spacing */
|
|
39
|
+
/* Spacing - safe to set defaults */
|
|
72
40
|
--spacing-xs: 0.25rem;
|
|
73
41
|
--spacing-sm: 0.5rem;
|
|
74
42
|
--spacing-md: 1rem;
|
|
75
43
|
--spacing-lg: 1.5rem;
|
|
76
44
|
--spacing-xl: 2rem;
|
|
77
45
|
|
|
78
|
-
/* Border Radius */
|
|
46
|
+
/* Border Radius - safe to set defaults */
|
|
79
47
|
--radius-sm: 0.25rem;
|
|
80
48
|
--radius-md: 0.5rem;
|
|
81
49
|
--radius-lg: 0.75rem;
|
|
82
50
|
--radius-xl: 1rem;
|
|
83
51
|
--radius-full: 9999px;
|
|
84
52
|
|
|
85
|
-
/*
|
|
86
|
-
--shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
|
|
87
|
-
--shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
|
|
88
|
-
--shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
|
|
89
|
-
|
|
90
|
-
/* Transitions */
|
|
53
|
+
/* Transitions - safe to set defaults */
|
|
91
54
|
--transition-fast: 150ms ease;
|
|
92
55
|
--transition-normal: 200ms ease;
|
|
93
56
|
--transition-slow: 300ms ease;
|
|
94
|
-
|
|
95
|
-
/* Focus */
|
|
96
|
-
--focus-ring: 0 0 0 2px var(--color-primary);
|
|
97
|
-
--focus-ring-offset: 0 0 0 2px white, 0 0 0 4px var(--color-primary);
|
|
98
57
|
}
|
|
99
58
|
`;
|
|
59
|
+
var lightThemeColors = `
|
|
60
|
+
/* Primary colors */
|
|
61
|
+
--color-primary: oklch(60% 0.15 250);
|
|
62
|
+
--color-primary-content: white;
|
|
63
|
+
--color-on-primary: white;
|
|
64
|
+
|
|
65
|
+
/* Secondary colors */
|
|
66
|
+
--color-secondary: oklch(55% 0.1 250);
|
|
67
|
+
--color-secondary-content: white;
|
|
68
|
+
--color-on-secondary: white;
|
|
69
|
+
|
|
70
|
+
/* Tertiary colors */
|
|
71
|
+
--color-tertiary: oklch(50% 0.12 300);
|
|
72
|
+
--color-tertiary-content: white;
|
|
73
|
+
--color-on-tertiary: white;
|
|
74
|
+
|
|
75
|
+
/* Surface colors */
|
|
76
|
+
--color-surface: white;
|
|
77
|
+
--color-surface-container: oklch(97% 0.01 250);
|
|
78
|
+
--color-surface-container-low: oklch(98% 0.005 250);
|
|
79
|
+
--color-surface-container-high: oklch(94% 0.01 250);
|
|
80
|
+
--color-on-surface: oklch(25% 0.02 250);
|
|
81
|
+
--color-on-surface-variant: oklch(45% 0.02 250);
|
|
82
|
+
|
|
83
|
+
/* Outline colors */
|
|
84
|
+
--color-outline: oklch(75% 0.02 250);
|
|
85
|
+
--color-outline-variant: oklch(85% 0.01 250);
|
|
86
|
+
|
|
87
|
+
/* Semantic colors */
|
|
88
|
+
--color-success: oklch(60% 0.15 145);
|
|
89
|
+
--color-warning: oklch(75% 0.15 85);
|
|
90
|
+
--color-error: oklch(55% 0.2 25);
|
|
91
|
+
--color-info: oklch(60% 0.15 250);
|
|
92
|
+
|
|
93
|
+
/* Shadows */
|
|
94
|
+
--shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
|
|
95
|
+
--shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
|
|
96
|
+
--shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
|
|
97
|
+
|
|
98
|
+
/* Focus */
|
|
99
|
+
--focus-ring: 0 0 0 2px var(--color-primary);
|
|
100
|
+
--focus-ring-offset: 0 0 0 2px white, 0 0 0 4px var(--color-primary);
|
|
101
|
+
`;
|
|
100
102
|
var resetStyles = css`
|
|
101
103
|
*,
|
|
102
104
|
*::before,
|
|
@@ -263,6 +265,7 @@ function toKebabCase(str) {
|
|
|
263
265
|
}
|
|
264
266
|
export {
|
|
265
267
|
resetStyles,
|
|
268
|
+
lightThemeColors,
|
|
266
269
|
defaultTheme,
|
|
267
270
|
cssVars,
|
|
268
271
|
css,
|
|
@@ -270,5 +273,5 @@ export {
|
|
|
270
273
|
BaseElement
|
|
271
274
|
};
|
|
272
275
|
|
|
273
|
-
//# debugId=
|
|
276
|
+
//# debugId=85DF54EDD2D5C4DA64756E2164756E21
|
|
274
277
|
//# sourceMappingURL=index.js.map
|
package/dist/esm/index.js.map
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../src/styles.ts", "../../src/base-element.ts"],
|
|
4
4
|
"sourcesContent": [
|
|
5
|
-
"/**\n * CSS-in-JS utilities for constructable stylesheets\n */\n\n/**\n * Cache for constructed stylesheets\n */\nconst styleSheetCache = new WeakMap<TemplateStringsArray, CSSStyleSheet>();\n\n/**\n * Creates a CSSStyleSheet from a template literal\n * Results are cached for performance\n *\n * @example\n * ```ts\n * const styles = css`\n * :host {\n * display: block;\n * }\n * `;\n * ```\n *\n * @param strings - Template literal strings\n * @param values - Interpolated values\n * @returns A CSSStyleSheet instance\n */\nexport function css(strings: TemplateStringsArray, ...values: (string | number)[]): CSSStyleSheet {\n // Check cache first\n const cached = styleSheetCache.get(strings);\n if (cached && values.length === 0) {\n return cached;\n }\n\n // Construct the CSS string\n let cssText = strings[0];\n for (let i = 0; i < values.length; i++) {\n cssText += String(values[i]) + strings[i + 1];\n }\n\n // Create and cache the stylesheet\n const sheet = new CSSStyleSheet();\n sheet.replaceSync(cssText);\n\n // Only cache if there are no dynamic values\n if (values.length === 0) {\n styleSheetCache.set(strings, sheet);\n }\n\n return sheet;\n}\n\n/**\n * Combines multiple CSSStyleSheet instances into an array\n * Useful for composing styles from multiple sources\n *\n * @param sheets - Stylesheets to combine\n * @returns Array of stylesheets\n */\nexport function combineStyles(...sheets: CSSStyleSheet[]): CSSStyleSheet[] {\n return sheets;\n}\n\n/**\n * Creates CSS custom property declarations from an object\n *\n * @example\n * ```ts\n * const vars = cssVars({\n * 'color-primary': 'oklch(60% 0.15 250)',\n * 'spacing-md': '1rem'\n * });\n * // Returns: '--color-primary: oklch(60% 0.15 250); --spacing-md: 1rem;'\n * ```\n *\n * @param vars - Object of variable names to values\n * @returns CSS custom property declarations string\n */\nexport function cssVars(vars: Record<string, string | number>): string {\n return Object.entries(vars)\n .map(([key, value]) => `--${key}: ${value}`)\n .join('; ');\n}\n\n/**\n * Default theme CSS custom properties\n * Uses --color-* naming to be compatible with @duskmoon-dev/core\n */\nexport const defaultTheme = css`\n :host {\n /* Primary colors */\n
|
|
5
|
+
"/**\n * CSS-in-JS utilities for constructable stylesheets\n */\n\n/**\n * Cache for constructed stylesheets\n */\nconst styleSheetCache = new WeakMap<TemplateStringsArray, CSSStyleSheet>();\n\n/**\n * Creates a CSSStyleSheet from a template literal\n * Results are cached for performance\n *\n * @example\n * ```ts\n * const styles = css`\n * :host {\n * display: block;\n * }\n * `;\n * ```\n *\n * @param strings - Template literal strings\n * @param values - Interpolated values\n * @returns A CSSStyleSheet instance\n */\nexport function css(strings: TemplateStringsArray, ...values: (string | number)[]): CSSStyleSheet {\n // Check cache first\n const cached = styleSheetCache.get(strings);\n if (cached && values.length === 0) {\n return cached;\n }\n\n // Construct the CSS string\n let cssText = strings[0];\n for (let i = 0; i < values.length; i++) {\n cssText += String(values[i]) + strings[i + 1];\n }\n\n // Create and cache the stylesheet\n const sheet = new CSSStyleSheet();\n sheet.replaceSync(cssText);\n\n // Only cache if there are no dynamic values\n if (values.length === 0) {\n styleSheetCache.set(strings, sheet);\n }\n\n return sheet;\n}\n\n/**\n * Combines multiple CSSStyleSheet instances into an array\n * Useful for composing styles from multiple sources\n *\n * @param sheets - Stylesheets to combine\n * @returns Array of stylesheets\n */\nexport function combineStyles(...sheets: CSSStyleSheet[]): CSSStyleSheet[] {\n return sheets;\n}\n\n/**\n * Creates CSS custom property declarations from an object\n *\n * @example\n * ```ts\n * const vars = cssVars({\n * 'color-primary': 'oklch(60% 0.15 250)',\n * 'spacing-md': '1rem'\n * });\n * // Returns: '--color-primary: oklch(60% 0.15 250); --spacing-md: 1rem;'\n * ```\n *\n * @param vars - Object of variable names to values\n * @returns CSS custom property declarations string\n */\nexport function cssVars(vars: Record<string, string | number>): string {\n return Object.entries(vars)\n .map(([key, value]) => `--${key}: ${value}`)\n .join('; ');\n}\n\n/**\n * Default theme CSS custom properties\n * Uses --color-* naming to be compatible with @duskmoon-dev/core\n *\n * Note: Color variables are NOT set here to allow inheritance from document.\n * Document should provide these via :root or [data-theme] selectors.\n * Only non-color design tokens are set as defaults.\n */\nexport const defaultTheme = css`\n :host {\n /* Typography - safe to set defaults */\n --font-family: system-ui, -apple-system, sans-serif;\n --font-size-xs: 0.75rem;\n --font-size-sm: 0.875rem;\n --font-size-md: 1rem;\n --font-size-lg: 1.125rem;\n --font-size-xl: 1.25rem;\n --font-weight-normal: 400;\n --font-weight-medium: 500;\n --font-weight-semibold: 600;\n --font-weight-bold: 700;\n\n /* Spacing - safe to set defaults */\n --spacing-xs: 0.25rem;\n --spacing-sm: 0.5rem;\n --spacing-md: 1rem;\n --spacing-lg: 1.5rem;\n --spacing-xl: 2rem;\n\n /* Border Radius - safe to set defaults */\n --radius-sm: 0.25rem;\n --radius-md: 0.5rem;\n --radius-lg: 0.75rem;\n --radius-xl: 1rem;\n --radius-full: 9999px;\n\n /* Transitions - safe to set defaults */\n --transition-fast: 150ms ease;\n --transition-normal: 200ms ease;\n --transition-slow: 300ms ease;\n }\n`;\n\n/**\n * Light theme color defaults\n * Apply this to :root or document for light theme\n */\nexport const lightThemeColors = `\n /* Primary colors */\n --color-primary: oklch(60% 0.15 250);\n --color-primary-content: white;\n --color-on-primary: white;\n\n /* Secondary colors */\n --color-secondary: oklch(55% 0.1 250);\n --color-secondary-content: white;\n --color-on-secondary: white;\n\n /* Tertiary colors */\n --color-tertiary: oklch(50% 0.12 300);\n --color-tertiary-content: white;\n --color-on-tertiary: white;\n\n /* Surface colors */\n --color-surface: white;\n --color-surface-container: oklch(97% 0.01 250);\n --color-surface-container-low: oklch(98% 0.005 250);\n --color-surface-container-high: oklch(94% 0.01 250);\n --color-on-surface: oklch(25% 0.02 250);\n --color-on-surface-variant: oklch(45% 0.02 250);\n\n /* Outline colors */\n --color-outline: oklch(75% 0.02 250);\n --color-outline-variant: oklch(85% 0.01 250);\n\n /* Semantic colors */\n --color-success: oklch(60% 0.15 145);\n --color-warning: oklch(75% 0.15 85);\n --color-error: oklch(55% 0.2 25);\n --color-info: oklch(60% 0.15 250);\n\n /* Shadows */\n --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);\n --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);\n --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);\n\n /* Focus */\n --focus-ring: 0 0 0 2px var(--color-primary);\n --focus-ring-offset: 0 0 0 2px white, 0 0 0 4px var(--color-primary);\n`;\n\n/**\n * Reset styles for Shadow DOM elements\n */\nexport const resetStyles = css`\n *,\n *::before,\n *::after {\n box-sizing: border-box;\n }\n\n :host {\n font-family: var(--font-family, system-ui, -apple-system, sans-serif);\n }\n\n :host([hidden]) {\n display: none !important;\n }\n`;\n",
|
|
6
6
|
"/**\n * Base class for all DuskMoon custom elements\n */\n\nimport { resetStyles, defaultTheme } from './styles.js';\n\n/**\n * Property definition for reactive properties\n */\nexport interface PropertyDefinition {\n /** Attribute name (defaults to kebab-case of property name) */\n attribute?: string | false;\n /** Whether changes should reflect to attribute */\n reflect?: boolean;\n /** Property type for conversion */\n type?: typeof String | typeof Number | typeof Boolean | typeof Object | typeof Array;\n /** Default value */\n default?: unknown;\n}\n\n/**\n * Map of property names to their definitions\n */\nexport type PropertyDefinitions = Record<string, PropertyDefinition>;\n\n/**\n * Base class for all DuskMoon custom elements\n *\n * Provides:\n * - Shadow DOM setup with adoptedStyleSheets\n * - Reactive properties with attribute reflection\n * - Style injection utilities\n * - Common lifecycle methods\n *\n * @example\n * ```ts\n * class MyElement extends BaseElement {\n * static properties = {\n * name: { type: String, reflect: true }\n * };\n *\n * constructor() {\n * super();\n * this.attachStyles(myStyles);\n * }\n *\n * render() {\n * return `<div>Hello, ${this.name}!</div>`;\n * }\n * }\n * ```\n */\nexport abstract class BaseElement extends HTMLElement {\n /**\n * Property definitions for reactive properties\n * Override in subclasses to define properties\n */\n static properties: PropertyDefinitions = {};\n\n /**\n * Observed attributes derived from property definitions\n */\n static get observedAttributes(): string[] {\n return Object.entries(this.properties)\n .filter(([, def]) => def.attribute !== false)\n .map(([name, def]) => def.attribute || toKebabCase(name));\n }\n\n /**\n * Shadow root for the element\n */\n declare shadowRoot: ShadowRoot;\n\n /**\n * Stylesheets attached to this element\n */\n private _styles: CSSStyleSheet[] = [];\n\n /**\n * Whether the element has been connected to the DOM\n */\n private _isConnected = false;\n\n /**\n * Queue of pending property updates\n */\n private _pendingUpdate = false;\n\n /**\n * Internal property values storage\n */\n private _propertyValues = new Map<string, unknown>();\n\n constructor() {\n super();\n this.attachShadow({ mode: 'open' });\n\n // Apply default styles\n this._styles = [resetStyles, defaultTheme];\n this.shadowRoot.adoptedStyleSheets = [...this._styles];\n\n // Initialize properties\n this._initializeProperties();\n }\n\n /**\n * Initialize reactive properties from static definitions\n */\n private _initializeProperties(): void {\n const ctor = this.constructor as typeof BaseElement;\n const properties = ctor.properties;\n\n for (const [name, def] of Object.entries(properties)) {\n // Set default value\n if (def.default !== undefined) {\n this._propertyValues.set(name, def.default);\n }\n\n // Define property accessor\n Object.defineProperty(this, name, {\n get: () => this._propertyValues.get(name),\n set: (value: unknown) => {\n const oldValue = this._propertyValues.get(name);\n if (oldValue === value) return;\n\n this._propertyValues.set(name, value);\n\n // Reflect to attribute if needed\n if (def.reflect && def.attribute !== false) {\n const attrName = def.attribute || toKebabCase(name);\n this._reflectToAttribute(attrName, value, def.type);\n }\n\n // Schedule update\n this._scheduleUpdate();\n },\n enumerable: true,\n configurable: true,\n });\n }\n }\n\n /**\n * Reflect a property value to an attribute\n */\n private _reflectToAttribute(\n attrName: string,\n value: unknown,\n type?: typeof String | typeof Number | typeof Boolean | typeof Object | typeof Array,\n ): void {\n if (value === null || value === undefined) {\n this.removeAttribute(attrName);\n return;\n }\n\n if (type === Boolean) {\n if (value) {\n this.setAttribute(attrName, '');\n } else {\n this.removeAttribute(attrName);\n }\n return;\n }\n\n if (type === Object || type === Array) {\n this.setAttribute(attrName, JSON.stringify(value));\n return;\n }\n\n this.setAttribute(attrName, String(value));\n }\n\n /**\n * Convert an attribute value to a property value\n */\n private _attributeToProperty(\n value: string | null,\n type?: typeof String | typeof Number | typeof Boolean | typeof Object | typeof Array,\n ): unknown {\n if (value === null) {\n return type === Boolean ? false : undefined;\n }\n\n switch (type) {\n case Boolean:\n return true;\n case Number:\n return Number(value);\n case Object:\n case Array:\n try {\n return JSON.parse(value);\n } catch {\n return undefined;\n }\n default:\n return value;\n }\n }\n\n /**\n * Schedule an update for the next microtask\n */\n private _scheduleUpdate(): void {\n if (this._pendingUpdate) return;\n this._pendingUpdate = true;\n\n queueMicrotask(() => {\n this._pendingUpdate = false;\n if (this._isConnected) {\n this.update();\n }\n });\n }\n\n /**\n * Attach additional stylesheets to the Shadow DOM\n *\n * @param styles - CSSStyleSheet or array of stylesheets to attach\n */\n protected attachStyles(styles: CSSStyleSheet | CSSStyleSheet[]): void {\n const sheets = Array.isArray(styles) ? styles : [styles];\n this._styles = [...this._styles, ...sheets];\n this.shadowRoot.adoptedStyleSheets = [...this._styles];\n }\n\n /**\n * Called when the element is connected to the DOM\n */\n connectedCallback(): void {\n this._isConnected = true;\n this.update();\n }\n\n /**\n * Called when the element is disconnected from the DOM\n */\n disconnectedCallback(): void {\n this._isConnected = false;\n }\n\n /**\n * Called when an observed attribute changes\n */\n attributeChangedCallback(name: string, oldValue: string | null, newValue: string | null): void {\n if (oldValue === newValue) return;\n\n const ctor = this.constructor as typeof BaseElement;\n const properties = ctor.properties;\n\n // Find the property for this attribute\n for (const [propName, def] of Object.entries(properties)) {\n const attrName = def.attribute || toKebabCase(propName);\n if (attrName === name) {\n const value = this._attributeToProperty(newValue, def.type);\n this._propertyValues.set(propName, value);\n this._scheduleUpdate();\n break;\n }\n }\n }\n\n /**\n * Called when the element should update its DOM\n * Override to customize update behavior\n */\n protected update(): void {\n const content = this.render();\n if (content !== undefined) {\n this.shadowRoot.innerHTML = content;\n }\n }\n\n /**\n * Returns the HTML content for the element\n * Override in subclasses to define the element's template\n *\n * @returns HTML string or undefined if no update needed\n */\n protected render(): string | undefined {\n return undefined;\n }\n\n /**\n * Emit a custom event from this element\n *\n * @param name - Event name\n * @param detail - Event detail data\n * @param options - Additional event options\n */\n protected emit<T>(name: string, detail?: T, options?: Omit<CustomEventInit, 'detail'>): boolean {\n const event = new CustomEvent(name, {\n bubbles: true,\n composed: true,\n cancelable: true,\n ...options,\n detail,\n });\n return this.dispatchEvent(event);\n }\n\n /**\n * Query an element in the Shadow DOM\n */\n protected query<T extends Element>(selector: string): T | null {\n return this.shadowRoot.querySelector<T>(selector);\n }\n\n /**\n * Query all matching elements in the Shadow DOM\n */\n protected queryAll<T extends Element>(selector: string): NodeListOf<T> {\n return this.shadowRoot.querySelectorAll<T>(selector);\n }\n}\n\n/**\n * Convert a camelCase string to kebab-case\n */\nfunction toKebabCase(str: string): string {\n return str.replace(/([A-Z])/g, '-$1').toLowerCase();\n}\n"
|
|
7
7
|
],
|
|
8
|
-
"mappings": ";AAOA,IAAM,kBAAkB,IAAI;AAmBrB,SAAS,GAAG,CAAC,YAAkC,QAA4C;AAAA,EAEhG,MAAM,SAAS,gBAAgB,IAAI,OAAO;AAAA,EAC1C,IAAI,UAAU,OAAO,WAAW,GAAG;AAAA,IACjC,OAAO;AAAA,EACT;AAAA,EAGA,IAAI,UAAU,QAAQ;AAAA,EACtB,SAAS,IAAI,EAAG,IAAI,OAAO,QAAQ,KAAK;AAAA,IACtC,WAAW,OAAO,OAAO,EAAE,IAAI,QAAQ,IAAI;AAAA,EAC7C;AAAA,EAGA,MAAM,QAAQ,IAAI;AAAA,EAClB,MAAM,YAAY,OAAO;AAAA,EAGzB,IAAI,OAAO,WAAW,GAAG;AAAA,IACvB,gBAAgB,IAAI,SAAS,KAAK;AAAA,EACpC;AAAA,EAEA,OAAO;AAAA;AAUF,SAAS,aAAa,IAAI,QAA0C;AAAA,EACzE,OAAO;AAAA;AAkBF,SAAS,OAAO,CAAC,MAA+C;AAAA,EACrE,OAAO,OAAO,QAAQ,IAAI,EACvB,IAAI,EAAE,KAAK,WAAW,KAAK,QAAQ,OAAO,EAC1C,KAAK,IAAI;AAAA;
|
|
9
|
-
"debugId": "
|
|
8
|
+
"mappings": "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",
|
|
9
|
+
"debugId": "85DF54EDD2D5C4DA64756E2164756E21",
|
|
10
10
|
"names": []
|
|
11
11
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"fileNames":["../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../src/styles.ts","../src/base-element.ts","../src/types.ts","../src/index.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/header.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/readable.d.ts","../../../node_modules/.bun/@types+node@20.19.28/node_modules/@types/node/compatibility/disposable.d.ts","../../../node_modules/.bun/@types+node@20.19.28/node_modules/@types/node/compatibility/indexable.d.ts","../../../node_modules/.bun/@types+node@20.19.28/node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/.bun/@types+node@20.19.28/node_modules/@types/node/compatibility/index.d.ts","../../../node_modules/.bun/@types+node@20.19.28/node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/.bun/@types+node@20.19.28/node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/.bun/@types+node@20.19.28/node_modules/@types/node/globals.d.ts","../../../node_modules/.bun/@types+node@20.19.28/node_modules/@types/node/web-globals/abortcontroller.d.ts","../../../node_modules/.bun/@types+node@20.19.28/node_modules/@types/node/web-globals/domexception.d.ts","../../../node_modules/.bun/@types+node@20.19.28/node_modules/@types/node/web-globals/events.d.ts","../../../node_modules/.bun/@types+node@20.19.28/node_modules/@types/node/web-globals/fetch.d.ts","../../../node_modules/.bun/@types+node@20.19.28/node_modules/@types/node/assert.d.ts","../../../node_modules/.bun/@types+node@20.19.28/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.bun/@types+node@20.19.28/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.bun/@types+node@20.19.28/node_modules/@types/node/buffer.d.ts","../../../node_modules/.bun/@types+node@20.19.28/node_modules/@types/node/child_process.d.ts","../../../node_modules/.bun/@types+node@20.19.28/node_modules/@types/node/cluster.d.ts","../../../node_modules/.bun/@types+node@20.19.28/node_modules/@types/node/console.d.ts","../../../node_modules/.bun/@types+node@20.19.28/node_modules/@types/node/constants.d.ts","../../../node_modules/.bun/@types+node@20.19.28/node_modules/@types/node/crypto.d.ts","../../../node_modules/.bun/@types+node@20.19.28/node_modules/@types/node/dgram.d.ts","../../../node_modules/.bun/@types+node@20.19.28/node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/.bun/@types+node@20.19.28/node_modules/@types/node/dns.d.ts","../../../node_modules/.bun/@types+node@20.19.28/node_modules/@types/node/dns/promises.d.ts","../../../node_modules/.bun/@types+node@20.19.28/node_modules/@types/node/domain.d.ts","../../../node_modules/.bun/@types+node@20.19.28/node_modules/@types/node/events.d.ts","../../../node_modules/.bun/@types+node@20.19.28/node_modules/@types/node/fs.d.ts","../../../node_modules/.bun/@types+node@20.19.28/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.bun/@types+node@20.19.28/node_modules/@types/node/http.d.ts","../../../node_modules/.bun/@types+node@20.19.28/node_modules/@types/node/http2.d.ts","../../../node_modules/.bun/@types+node@20.19.28/node_modules/@types/node/https.d.ts","../../../node_modules/.bun/@types+node@20.19.28/node_modules/@types/node/inspector.generated.d.ts","../../../node_modules/.bun/@types+node@20.19.28/node_modules/@types/node/module.d.ts","../../../node_modules/.bun/@types+node@20.19.28/node_modules/@types/node/net.d.ts","../../../node_modules/.bun/@types+node@20.19.28/node_modules/@types/node/os.d.ts","../../../node_modules/.bun/@types+node@20.19.28/node_modules/@types/node/path.d.ts","../../../node_modules/.bun/@types+node@20.19.28/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.bun/@types+node@20.19.28/node_modules/@types/node/process.d.ts","../../../node_modules/.bun/@types+node@20.19.28/node_modules/@types/node/punycode.d.ts","../../../node_modules/.bun/@types+node@20.19.28/node_modules/@types/node/querystring.d.ts","../../../node_modules/.bun/@types+node@20.19.28/node_modules/@types/node/readline.d.ts","../../../node_modules/.bun/@types+node@20.19.28/node_modules/@types/node/readline/promises.d.ts","../../../node_modules/.bun/@types+node@20.19.28/node_modules/@types/node/repl.d.ts","../../../node_modules/.bun/@types+node@20.19.28/node_modules/@types/node/sea.d.ts","../../../node_modules/.bun/@types+node@20.19.28/node_modules/@types/node/stream.d.ts","../../../node_modules/.bun/@types+node@20.19.28/node_modules/@types/node/stream/promises.d.ts","../../../node_modules/.bun/@types+node@20.19.28/node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/.bun/@types+node@20.19.28/node_modules/@types/node/stream/web.d.ts","../../../node_modules/.bun/@types+node@20.19.28/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.bun/@types+node@20.19.28/node_modules/@types/node/test.d.ts","../../../node_modules/.bun/@types+node@20.19.28/node_modules/@types/node/timers.d.ts","../../../node_modules/.bun/@types+node@20.19.28/node_modules/@types/node/timers/promises.d.ts","../../../node_modules/.bun/@types+node@20.19.28/node_modules/@types/node/tls.d.ts","../../../node_modules/.bun/@types+node@20.19.28/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.bun/@types+node@20.19.28/node_modules/@types/node/tty.d.ts","../../../node_modules/.bun/@types+node@20.19.28/node_modules/@types/node/url.d.ts","../../../node_modules/.bun/@types+node@20.19.28/node_modules/@types/node/util.d.ts","../../../node_modules/.bun/@types+node@20.19.28/node_modules/@types/node/v8.d.ts","../../../node_modules/.bun/@types+node@20.19.28/node_modules/@types/node/vm.d.ts","../../../node_modules/.bun/@types+node@20.19.28/node_modules/@types/node/wasi.d.ts","../../../node_modules/.bun/@types+node@20.19.28/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.bun/@types+node@20.19.28/node_modules/@types/node/zlib.d.ts","../../../node_modules/.bun/@types+node@20.19.28/node_modules/@types/node/index.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/file.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/fetch.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/formdata.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/connector.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/client.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/errors.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/dispatcher.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/global-origin.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/pool-stats.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/pool.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/handlers.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/agent.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/mock-agent.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/mock-client.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/mock-pool.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/mock-errors.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/retry-handler.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/retry-agent.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/api.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/interceptors.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/util.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/cookies.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/patch.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/websocket.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/eventsource.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/filereader.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/content-type.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/cache.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/index.d.ts","../../../node_modules/.bun/bun-types@1.3.5/node_modules/bun-types/globals.d.ts","../../../node_modules/.bun/bun-types@1.3.5/node_modules/bun-types/s3.d.ts","../../../node_modules/.bun/bun-types@1.3.5/node_modules/bun-types/fetch.d.ts","../../../node_modules/.bun/bun-types@1.3.5/node_modules/bun-types/bun.d.ts","../../../node_modules/.bun/bun-types@1.3.5/node_modules/bun-types/extensions.d.ts","../../../node_modules/.bun/bun-types@1.3.5/node_modules/bun-types/devserver.d.ts","../../../node_modules/.bun/bun-types@1.3.5/node_modules/bun-types/ffi.d.ts","../../../node_modules/.bun/bun-types@1.3.5/node_modules/bun-types/html-rewriter.d.ts","../../../node_modules/.bun/bun-types@1.3.5/node_modules/bun-types/jsc.d.ts","../../../node_modules/.bun/bun-types@1.3.5/node_modules/bun-types/sqlite.d.ts","../../../node_modules/.bun/bun-types@1.3.5/node_modules/bun-types/vendor/expect-type/utils.d.ts","../../../node_modules/.bun/bun-types@1.3.5/node_modules/bun-types/vendor/expect-type/overloads.d.ts","../../../node_modules/.bun/bun-types@1.3.5/node_modules/bun-types/vendor/expect-type/branding.d.ts","../../../node_modules/.bun/bun-types@1.3.5/node_modules/bun-types/vendor/expect-type/messages.d.ts","../../../node_modules/.bun/bun-types@1.3.5/node_modules/bun-types/vendor/expect-type/index.d.ts","../../../node_modules/.bun/bun-types@1.3.5/node_modules/bun-types/test.d.ts","../../../node_modules/.bun/bun-types@1.3.5/node_modules/bun-types/wasm.d.ts","../../../node_modules/.bun/bun-types@1.3.5/node_modules/bun-types/overrides.d.ts","../../../node_modules/.bun/bun-types@1.3.5/node_modules/bun-types/deprecated.d.ts","../../../node_modules/.bun/bun-types@1.3.5/node_modules/bun-types/redis.d.ts","../../../node_modules/.bun/bun-types@1.3.5/node_modules/bun-types/shell.d.ts","../../../node_modules/.bun/bun-types@1.3.5/node_modules/bun-types/serve.d.ts","../../../node_modules/.bun/bun-types@1.3.5/node_modules/bun-types/sql.d.ts","../../../node_modules/.bun/bun-types@1.3.5/node_modules/bun-types/security.d.ts","../../../node_modules/.bun/bun-types@1.3.5/node_modules/bun-types/bundle.d.ts","../../../node_modules/.bun/bun-types@1.3.5/node_modules/bun-types/bun.ns.d.ts","../../../node_modules/.bun/bun-types@1.3.5/node_modules/bun-types/index.d.ts","../../../node_modules/.bun/@types+bun@1.3.5/node_modules/@types/bun/index.d.ts"],"fileIdsList":[[71,80,164,165,166,167,169,180,181,182,183,184,185,186,187,190],[71,77,80,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,79,80,164,165,166,167,169,180,181,182,183,184,185,186,187],[80,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,85,113,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,81,86,91,99,110,121,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,81,82,91,99,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,164,165,166,167,169,180,181,182,183,184,185,186,187],[66,67,68,71,80,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,83,122,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,84,85,92,100,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,85,110,118,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,86,88,91,99,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,79,80,87,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,88,89,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,90,91,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,79,80,91,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,91,92,93,110,121,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,91,92,93,106,110,113,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,88,91,94,99,110,121,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,91,92,94,95,99,110,118,121,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,94,96,110,118,121,164,165,166,167,169,180,181,182,183,184,185,186,187],[69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,91,97,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,98,121,126,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,88,91,99,110,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,100,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,101,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,79,80,102,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,104,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,105,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,91,106,107,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,106,108,122,124,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,91,110,111,113,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,112,113,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,110,111,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,113,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,114,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,77,80,110,115,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,91,116,117,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,116,117,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,85,99,110,118,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,119,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,99,120,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,94,105,121,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,85,122,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,110,123,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,98,124,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,125,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,163,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,91,93,102,110,113,121,124,126,163,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,110,127,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,85,92,94,118,122,126,163,164,165,166,169,170,180,181,182,183,184,185,186,187],[71,80,164,165,166,167,169,180,181,183,184,185,186,187],[71,80,164,165,166,167,180,181,182,183,184,185,186,187],[71,80,163,164,165,167,169,180,181,182,183,184,185,186,187],[71,80,85,102,110,113,118,122,126,163,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,128,164,165,166,167,168,169,170,171,172,173,179,180,181,182,183,184,185,186,187,188,189],[10,71,72,80,83,85,92,93,100,113,118,121,127,164,165,166,167,169,180,182,183,184,185,186,187],[71,80,164,165,166,167,169,180,181,182,184,185,186,187],[71,80,92,164,166,167,169,180,181,182,183,184,185,186,187],[71,80,164,165,166,167,169,180,181,182,183,184,185,186],[71,80,164,165,166,167,169,180,181,182,183,184,186,187],[71,80,164,165,166,167,169,180,181,182,183,185,186,187],[71,80,164,165,166,167,169,173,180,181,182,183,184,185,187],[71,80,164,165,166,167,169,178,180,181,182,183,184,185,186,187],[71,80,164,165,166,167,169,174,175,180,181,182,183,184,185,186,187],[71,80,164,165,166,167,169,174,175,176,177,180,181,182,183,184,185,186,187],[71,80,164,165,166,167,169,174,176,180,181,182,183,184,185,186,187],[71,80,164,165,166,167,169,174,180,181,182,183,184,185,186,187],[71,80,164,165,166,167,169,181,182,183,184,185,186,187],[71,80,121,135,139,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,110,121,135,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,130,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,118,121,132,135,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,99,118,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,128,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,128,130,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,99,121,132,135,164,165,166,167,169,180,181,182,183,184,185,186,187],[64,65,71,80,91,110,121,131,134,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,135,142,164,165,166,167,169,180,181,182,183,184,185,186,187],[64,71,80,133,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,135,156,157,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,113,121,128,131,135,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,128,156,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,128,129,130,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,135,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,129,130,131,132,133,134,135,136,137,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,157,158,159,160,161,162,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,135,150,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,135,142,143,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,133,135,143,144,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,134,164,165,166,167,169,180,181,182,183,184,185,186,187],[64,71,80,130,135,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,135,139,143,144,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,139,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,121,133,135,138,164,165,166,167,169,180,181,182,183,184,185,186,187],[64,71,80,132,135,142,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,110,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,126,128,130,135,156,164,165,166,167,169,180,181,182,183,184,185,186,187],[60,71,80,164,165,166,167,169,180,181,182,183,184,185,186,187],[60,61,62,71,80,164,165,166,167,169,180,181,182,183,184,185,186,187]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2e80ee7a49e8ac312cc11b77f1475804bee36b3b2bc896bead8b6e1266befb43","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"111e0ee8afd40c84b69ec8ee6376b789bf885c4117cb2baf664d474422562081","signature":"1b77b52c5de36eb33a7bb39a224c60217f5902221575dc73e891b1f3038a2a38"},{"version":"5bff11ecd8b79525ae1922da1f12b5deb7799f359c81f0fb1df5c62be83a2478","signature":"d4a48751b4227ab81b82552c7d5efcfc4810bcca247298010215d874c3ab5191"},{"version":"82edc91abe13099b1dcd5d69b967ca709b215f12595c45cc6eb4bd25c17d86ae","signature":"d3a328c0eccf652bc8b6c14515a8b848a558b9d684e15a7c0c2e15de5016df57"},{"version":"8c300228afded2724347502b01dd29cb84bf5ea328291b106987ada1116cc74d","signature":"3d80d8bcd5166b8b8b5c5e1c7d6261fdacfcbf7c876412610dc7b1742bb39df3"},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","impliedFormat":1},{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"98cffbf06d6bab333473c70a893770dbe990783904002c4f1a960447b4b53dca","affectsGlobalScope":true,"impliedFormat":1},{"version":"ba481bca06f37d3f2c137ce343c7d5937029b2468f8e26111f3c9d9963d6568d","affectsGlobalScope":true,"impliedFormat":1},{"version":"6d9ef24f9a22a88e3e9b3b3d8c40ab1ddb0853f1bfbd5c843c37800138437b61","affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","affectsGlobalScope":true,"impliedFormat":1},{"version":"2cbe0621042e2a68c7cbce5dfed3906a1862a16a7d496010636cdbdb91341c0f","affectsGlobalScope":true,"impliedFormat":1},{"version":"e2677634fe27e87348825bb041651e22d50a613e2fdf6a4a3ade971d71bac37e","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"8c0bcd6c6b67b4b503c11e91a1fb91522ed585900eab2ab1f61bba7d7caa9d6f","impliedFormat":1},{"version":"8cd19276b6590b3ebbeeb030ac271871b9ed0afc3074ac88a94ed2449174b776","affectsGlobalScope":true,"impliedFormat":1},{"version":"696eb8d28f5949b87d894b26dc97318ef944c794a9a4e4f62360cd1d1958014b","impliedFormat":1},{"version":"3f8fa3061bd7402970b399300880d55257953ee6d3cd408722cb9ac20126460c","impliedFormat":1},{"version":"35ec8b6760fd7138bbf5809b84551e31028fb2ba7b6dc91d95d098bf212ca8b4","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"68bd56c92c2bd7d2339457eb84d63e7de3bd56a69b25f3576e1568d21a162398","affectsGlobalScope":true,"impliedFormat":1},{"version":"3e93b123f7c2944969d291b35fed2af79a6e9e27fdd5faa99748a51c07c02d28","impliedFormat":1},{"version":"9d19808c8c291a9010a6c788e8532a2da70f811adb431c97520803e0ec649991","impliedFormat":1},{"version":"87aad3dd9752067dc875cfaa466fc44246451c0c560b820796bdd528e29bef40","impliedFormat":1},{"version":"4aacb0dd020eeaef65426153686cc639a78ec2885dc72ad220be1d25f1a439df","impliedFormat":1},{"version":"f0bd7e6d931657b59605c44112eaf8b980ba7f957a5051ed21cb93d978cf2f45","impliedFormat":1},{"version":"8db0ae9cb14d9955b14c214f34dae1b9ef2baee2fe4ce794a4cd3ac2531e3255","affectsGlobalScope":true,"impliedFormat":1},{"version":"15fc6f7512c86810273af28f224251a5a879e4261b4d4c7e532abfbfc3983134","impliedFormat":1},{"version":"58adba1a8ab2d10b54dc1dced4e41f4e7c9772cbbac40939c0dc8ce2cdb1d442","impliedFormat":1},{"version":"2fd4c143eff88dabb57701e6a40e02a4dbc36d5eb1362e7964d32028056a782b","impliedFormat":1},{"version":"714435130b9015fae551788df2a88038471a5a11eb471f27c4ede86552842bc9","impliedFormat":1},{"version":"855cd5f7eb396f5f1ab1bc0f8580339bff77b68a770f84c6b254e319bbfd1ac7","impliedFormat":1},{"version":"5650cf3dace09e7c25d384e3e6b818b938f68f4e8de96f52d9c5a1b3db068e86","impliedFormat":1},{"version":"1354ca5c38bd3fd3836a68e0f7c9f91f172582ba30ab15bb8c075891b91502b7","affectsGlobalScope":true,"impliedFormat":1},{"version":"27fdb0da0daf3b337c5530c5f266efe046a6ceb606e395b346974e4360c36419","impliedFormat":1},{"version":"2d2fcaab481b31a5882065c7951255703ddbe1c0e507af56ea42d79ac3911201","impliedFormat":1},{"version":"a192fe8ec33f75edbc8d8f3ed79f768dfae11ff5735e7fe52bfa69956e46d78d","impliedFormat":1},{"version":"ca867399f7db82df981d6915bcbb2d81131d7d1ef683bc782b59f71dda59bc85","affectsGlobalScope":true,"impliedFormat":1},{"version":"d9e971bba9cf977c7774abbd4d2e3413a231af8a06a2e8b16af2a606bc91ddd0","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e043a1bc8fbf2a255bccf9bf27e0f1caf916c3b0518ea34aa72357c0afd42ec","impliedFormat":1},{"version":"b4f70ec656a11d570e1a9edce07d118cd58d9760239e2ece99306ee9dfe61d02","impliedFormat":1},{"version":"3bc2f1e2c95c04048212c569ed38e338873f6a8593930cf5a7ef24ffb38fc3b6","impliedFormat":1},{"version":"6e70e9570e98aae2b825b533aa6292b6abd542e8d9f6e9475e88e1d7ba17c866","impliedFormat":1},{"version":"f9d9d753d430ed050dc1bf2667a1bab711ccbb1c1507183d794cc195a5b085cc","impliedFormat":1},{"version":"9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","impliedFormat":1},{"version":"47ab634529c5955b6ad793474ae188fce3e6163e3a3fb5edd7e0e48f14435333","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"45650f47bfb376c8a8ed39d4bcda5902ab899a3150029684ee4c10676d9fbaee","impliedFormat":1},{"version":"0225ecb9ed86bdb7a2c7fd01f1556906902929377b44483dc4b83e03b3ef227d","affectsGlobalScope":true,"impliedFormat":1},{"version":"74cf591a0f63db318651e0e04cb55f8791385f86e987a67fd4d2eaab8191f730","impliedFormat":1},{"version":"5eab9b3dc9b34f185417342436ec3f106898da5f4801992d8ff38ab3aff346b5","impliedFormat":1},{"version":"12ed4559eba17cd977aa0db658d25c4047067444b51acfdcbf38470630642b23","affectsGlobalScope":true,"impliedFormat":1},{"version":"f3ffabc95802521e1e4bcba4c88d8615176dc6e09111d920c7a213bdda6e1d65","impliedFormat":1},{"version":"ddc734b4fae82a01d247e9e342d020976640b5e93b4e9b3a1e30e5518883a060","impliedFormat":1},{"version":"ae56f65caf3be91108707bd8dfbccc2a57a91feb5daabf7165a06a945545ed26","impliedFormat":1},{"version":"a136d5de521da20f31631a0a96bf712370779d1c05b7015d7019a9b2a0446ca9","impliedFormat":1},{"version":"c3b41e74b9a84b88b1dca61ec39eee25c0dbc8e7d519ba11bb070918cfacf656","affectsGlobalScope":true,"impliedFormat":1},{"version":"4737a9dc24d0e68b734e6cfbcea0c15a2cfafeb493485e27905f7856988c6b29","affectsGlobalScope":true,"impliedFormat":1},{"version":"36d8d3e7506b631c9582c251a2c0b8a28855af3f76719b12b534c6edf952748d","impliedFormat":1},{"version":"1ca69210cc42729e7ca97d3a9ad48f2e9cb0042bada4075b588ae5387debd318","impliedFormat":1},{"version":"f5ebe66baaf7c552cfa59d75f2bfba679f329204847db3cec385acda245e574e","impliedFormat":1},{"version":"ed59add13139f84da271cafd32e2171876b0a0af2f798d0c663e8eeb867732cf","affectsGlobalScope":true,"impliedFormat":1},{"version":"05db535df8bdc30d9116fe754a3473d1b6479afbc14ae8eb18b605c62677d518","impliedFormat":1},{"version":"b1810689b76fd473bd12cc9ee219f8e62f54a7d08019a235d07424afbf074d25","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"6e215dac8b234548d91b718f9c07d5b09473cd5cabb29053fcd8be0af190acb6","affectsGlobalScope":true,"impliedFormat":1},{"version":"0da1adb8d70eba31791b5f9203a384a628f9a1b03162bc68306838e842eff203","impliedFormat":1},{"version":"f3d3e999a323c85c8a63ce90c6e4624ff89fe137a0e2508fddc08e0556d08abf","impliedFormat":1},{"version":"a1fdda024d346cd1906d4a1f66c2804217ef88b554946ac7d9b7bcbadcc75f11","impliedFormat":1},{"version":"49ae37a1b5de16f762c8a151eeaec6b558ce3c27251052ef7a361144af42cad4","impliedFormat":1},{"version":"fc9e630f9302d0414ccd6c8ed2706659cff5ae454a56560c6122fa4a3fac5bbd","affectsGlobalScope":true,"impliedFormat":1},{"version":"aa0a44af370a2d7c1aac988a17836f57910a6c52689f52f5b3ac1d4c6cadcb23","impliedFormat":1},{"version":"0ac74c7586880e26b6a599c710b59284a284e084a2bbc82cd40fb3fbfdea71ae","affectsGlobalScope":true,"impliedFormat":1},{"version":"2ce12357dadbb8efc4e4ec4dab709c8071bf992722fc9adfea2fe0bd5b50923f","impliedFormat":1},{"version":"31bd1a31f935276adf90384a35edbd4614018ff008f57d62ffb57ac538e94e51","impliedFormat":1},{"version":"ffd344731abee98a0a85a735b19052817afd2156d97d1410819cd9bcd1bd575e","impliedFormat":1},{"version":"475e07c959f4766f90678425b45cf58ac9b95e50de78367759c1e5118e85d5c3","impliedFormat":1},{"version":"a524ae401b30a1b0814f1bbcdae459da97fa30ae6e22476e506bb3f82e3d9456","impliedFormat":1},{"version":"7375e803c033425e27cb33bae21917c106cb37b508fd242cccd978ef2ee244c7","impliedFormat":1},{"version":"eeb890c7e9218afdad2f30ad8a76b0b0b5161d11ce13b6723879de408e6bc47a","impliedFormat":1},{"version":"561c795984d06b91091780cebeac616e9e41d83240770e1af14e6ec083b713d5","impliedFormat":1},{"version":"dfbcc400ac6d20b941ccc7bd9031b9d9f54e4d495dd79117334e771959df4805","affectsGlobalScope":true,"impliedFormat":1},{"version":"944d65951e33a13068be5cd525ec42bf9bc180263ba0b723fa236970aa21f611","affectsGlobalScope":true,"impliedFormat":1},{"version":"6b386c7b6ce6f369d18246904fa5eac73566167c88fb6508feba74fa7501a384","affectsGlobalScope":true,"impliedFormat":1},{"version":"592a109e67b907ffd2078cd6f727d5c326e06eaada169eef8fb18546d96f6797","impliedFormat":1},{"version":"f2eb1e35cae499d57e34b4ac3650248776fe7dbd9a3ec34b23754cfd8c22fceb","impliedFormat":1},{"version":"fbed43a6fcf5b675f5ec6fc960328114777862b58a2bb19c109e8fc1906caa09","impliedFormat":1},{"version":"9e98bd421e71f70c75dae7029e316745c89fa7b8bc8b43a91adf9b82c206099c","impliedFormat":1},{"version":"fc803e6b01f4365f71f51f9ce13f71396766848204d4f7a1b2b6154434b84b15","impliedFormat":1},{"version":"f3afcc0d6f77a9ca2d2c5c92eb4b89cd38d6fa4bdc1410d626bd701760a977ec","impliedFormat":1},{"version":"c8109fe76467db6e801d0edfbc50e6826934686467c9418ce6b246232ce7f109","affectsGlobalScope":true,"impliedFormat":1},{"version":"e6f803e4e45915d58e721c04ec17830c6e6678d1e3e00e28edf3d52720909cea","affectsGlobalScope":true,"impliedFormat":1},{"version":"37be812b06e518320ba82e2aff3ac2ca37370a9df917db708f081b9043fa3315","impliedFormat":1}],"root":[[60,63]],"options":{"composite":true,"declaration":true,"declarationMap":true,"emitDeclarationOnly":true,"esModuleInterop":true,"module":99,"outDir":"./types","rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":9},"referencedMap":[[191,1],[77,2],[78,2],[79,3],[71,4],[80,5],[81,6],[82,7],[66,8],[69,9],[67,8],[68,8],[83,10],[84,11],[85,12],[86,13],[87,14],[88,15],[89,15],[90,16],[91,17],[92,18],[93,19],[72,8],[70,8],[94,20],[95,21],[96,22],[128,23],[97,24],[98,25],[99,26],[100,27],[101,28],[102,29],[103,30],[104,31],[105,32],[106,33],[107,33],[108,34],[109,8],[110,35],[112,36],[111,37],[113,38],[114,39],[115,40],[116,41],[117,42],[118,43],[119,44],[120,45],[121,46],[122,47],[123,48],[124,49],[125,50],[73,8],[74,8],[75,8],[76,51],[126,52],[127,53],[167,54],[189,8],[188,8],[182,55],[169,56],[168,8],[166,57],[170,8],[164,58],[171,8],[190,59],[172,8],[181,60],[183,61],[165,62],[187,63],[185,64],[184,65],[186,66],[173,8],[179,67],[176,68],[178,69],[177,70],[175,71],[174,8],[180,72],[58,8],[59,8],[10,8],[11,8],[13,8],[12,8],[2,8],[14,8],[15,8],[16,8],[17,8],[18,8],[19,8],[20,8],[21,8],[3,8],[22,8],[23,8],[4,8],[24,8],[28,8],[25,8],[26,8],[27,8],[29,8],[30,8],[31,8],[5,8],[32,8],[33,8],[34,8],[35,8],[6,8],[39,8],[36,8],[37,8],[38,8],[40,8],[7,8],[41,8],[46,8],[47,8],[42,8],[43,8],[44,8],[45,8],[8,8],[51,8],[48,8],[49,8],[50,8],[52,8],[9,8],[53,8],[54,8],[55,8],[57,8],[56,8],[1,8],[142,73],[152,74],[141,73],[162,75],[133,76],[132,77],[161,78],[155,79],[160,80],[135,81],[149,82],[134,83],[158,84],[130,85],[129,78],[159,86],[131,87],[136,88],[137,8],[140,88],[64,8],[163,89],[153,90],[144,91],[145,92],[147,93],[143,94],[146,95],[156,78],[138,96],[139,97],[148,98],[65,99],[151,90],[150,88],[154,8],[157,100],[61,101],[63,102],[60,8],[62,8]],"latestChangedDtsFile":"./types/index.d.ts","version":"5.9.3"}
|
|
1
|
+
{"fileNames":["../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../src/styles.ts","../src/base-element.ts","../src/types.ts","../src/index.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/header.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/readable.d.ts","../../../node_modules/.bun/@types+node@20.19.30/node_modules/@types/node/compatibility/disposable.d.ts","../../../node_modules/.bun/@types+node@20.19.30/node_modules/@types/node/compatibility/indexable.d.ts","../../../node_modules/.bun/@types+node@20.19.30/node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/.bun/@types+node@20.19.30/node_modules/@types/node/compatibility/index.d.ts","../../../node_modules/.bun/@types+node@20.19.30/node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/.bun/@types+node@20.19.30/node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/.bun/@types+node@20.19.30/node_modules/@types/node/globals.d.ts","../../../node_modules/.bun/@types+node@20.19.30/node_modules/@types/node/web-globals/abortcontroller.d.ts","../../../node_modules/.bun/@types+node@20.19.30/node_modules/@types/node/web-globals/domexception.d.ts","../../../node_modules/.bun/@types+node@20.19.30/node_modules/@types/node/web-globals/events.d.ts","../../../node_modules/.bun/@types+node@20.19.30/node_modules/@types/node/web-globals/fetch.d.ts","../../../node_modules/.bun/@types+node@20.19.30/node_modules/@types/node/assert.d.ts","../../../node_modules/.bun/@types+node@20.19.30/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.bun/@types+node@20.19.30/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.bun/@types+node@20.19.30/node_modules/@types/node/buffer.d.ts","../../../node_modules/.bun/@types+node@20.19.30/node_modules/@types/node/child_process.d.ts","../../../node_modules/.bun/@types+node@20.19.30/node_modules/@types/node/cluster.d.ts","../../../node_modules/.bun/@types+node@20.19.30/node_modules/@types/node/console.d.ts","../../../node_modules/.bun/@types+node@20.19.30/node_modules/@types/node/constants.d.ts","../../../node_modules/.bun/@types+node@20.19.30/node_modules/@types/node/crypto.d.ts","../../../node_modules/.bun/@types+node@20.19.30/node_modules/@types/node/dgram.d.ts","../../../node_modules/.bun/@types+node@20.19.30/node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/.bun/@types+node@20.19.30/node_modules/@types/node/dns.d.ts","../../../node_modules/.bun/@types+node@20.19.30/node_modules/@types/node/dns/promises.d.ts","../../../node_modules/.bun/@types+node@20.19.30/node_modules/@types/node/domain.d.ts","../../../node_modules/.bun/@types+node@20.19.30/node_modules/@types/node/events.d.ts","../../../node_modules/.bun/@types+node@20.19.30/node_modules/@types/node/fs.d.ts","../../../node_modules/.bun/@types+node@20.19.30/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.bun/@types+node@20.19.30/node_modules/@types/node/http.d.ts","../../../node_modules/.bun/@types+node@20.19.30/node_modules/@types/node/http2.d.ts","../../../node_modules/.bun/@types+node@20.19.30/node_modules/@types/node/https.d.ts","../../../node_modules/.bun/@types+node@20.19.30/node_modules/@types/node/inspector.generated.d.ts","../../../node_modules/.bun/@types+node@20.19.30/node_modules/@types/node/module.d.ts","../../../node_modules/.bun/@types+node@20.19.30/node_modules/@types/node/net.d.ts","../../../node_modules/.bun/@types+node@20.19.30/node_modules/@types/node/os.d.ts","../../../node_modules/.bun/@types+node@20.19.30/node_modules/@types/node/path.d.ts","../../../node_modules/.bun/@types+node@20.19.30/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.bun/@types+node@20.19.30/node_modules/@types/node/process.d.ts","../../../node_modules/.bun/@types+node@20.19.30/node_modules/@types/node/punycode.d.ts","../../../node_modules/.bun/@types+node@20.19.30/node_modules/@types/node/querystring.d.ts","../../../node_modules/.bun/@types+node@20.19.30/node_modules/@types/node/readline.d.ts","../../../node_modules/.bun/@types+node@20.19.30/node_modules/@types/node/readline/promises.d.ts","../../../node_modules/.bun/@types+node@20.19.30/node_modules/@types/node/repl.d.ts","../../../node_modules/.bun/@types+node@20.19.30/node_modules/@types/node/sea.d.ts","../../../node_modules/.bun/@types+node@20.19.30/node_modules/@types/node/stream.d.ts","../../../node_modules/.bun/@types+node@20.19.30/node_modules/@types/node/stream/promises.d.ts","../../../node_modules/.bun/@types+node@20.19.30/node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/.bun/@types+node@20.19.30/node_modules/@types/node/stream/web.d.ts","../../../node_modules/.bun/@types+node@20.19.30/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.bun/@types+node@20.19.30/node_modules/@types/node/test.d.ts","../../../node_modules/.bun/@types+node@20.19.30/node_modules/@types/node/timers.d.ts","../../../node_modules/.bun/@types+node@20.19.30/node_modules/@types/node/timers/promises.d.ts","../../../node_modules/.bun/@types+node@20.19.30/node_modules/@types/node/tls.d.ts","../../../node_modules/.bun/@types+node@20.19.30/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.bun/@types+node@20.19.30/node_modules/@types/node/tty.d.ts","../../../node_modules/.bun/@types+node@20.19.30/node_modules/@types/node/url.d.ts","../../../node_modules/.bun/@types+node@20.19.30/node_modules/@types/node/util.d.ts","../../../node_modules/.bun/@types+node@20.19.30/node_modules/@types/node/v8.d.ts","../../../node_modules/.bun/@types+node@20.19.30/node_modules/@types/node/vm.d.ts","../../../node_modules/.bun/@types+node@20.19.30/node_modules/@types/node/wasi.d.ts","../../../node_modules/.bun/@types+node@20.19.30/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.bun/@types+node@20.19.30/node_modules/@types/node/zlib.d.ts","../../../node_modules/.bun/@types+node@20.19.30/node_modules/@types/node/index.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/file.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/fetch.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/formdata.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/connector.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/client.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/errors.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/dispatcher.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/global-origin.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/pool-stats.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/pool.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/handlers.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/agent.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/mock-agent.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/mock-client.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/mock-pool.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/mock-errors.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/retry-handler.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/retry-agent.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/api.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/interceptors.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/util.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/cookies.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/patch.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/websocket.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/eventsource.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/filereader.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/content-type.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/cache.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/index.d.ts","../../../node_modules/.bun/bun-types@1.3.6/node_modules/bun-types/globals.d.ts","../../../node_modules/.bun/bun-types@1.3.6/node_modules/bun-types/s3.d.ts","../../../node_modules/.bun/bun-types@1.3.6/node_modules/bun-types/fetch.d.ts","../../../node_modules/.bun/bun-types@1.3.6/node_modules/bun-types/bun.d.ts","../../../node_modules/.bun/bun-types@1.3.6/node_modules/bun-types/extensions.d.ts","../../../node_modules/.bun/bun-types@1.3.6/node_modules/bun-types/devserver.d.ts","../../../node_modules/.bun/bun-types@1.3.6/node_modules/bun-types/ffi.d.ts","../../../node_modules/.bun/bun-types@1.3.6/node_modules/bun-types/html-rewriter.d.ts","../../../node_modules/.bun/bun-types@1.3.6/node_modules/bun-types/jsc.d.ts","../../../node_modules/.bun/bun-types@1.3.6/node_modules/bun-types/sqlite.d.ts","../../../node_modules/.bun/bun-types@1.3.6/node_modules/bun-types/vendor/expect-type/utils.d.ts","../../../node_modules/.bun/bun-types@1.3.6/node_modules/bun-types/vendor/expect-type/overloads.d.ts","../../../node_modules/.bun/bun-types@1.3.6/node_modules/bun-types/vendor/expect-type/branding.d.ts","../../../node_modules/.bun/bun-types@1.3.6/node_modules/bun-types/vendor/expect-type/messages.d.ts","../../../node_modules/.bun/bun-types@1.3.6/node_modules/bun-types/vendor/expect-type/index.d.ts","../../../node_modules/.bun/bun-types@1.3.6/node_modules/bun-types/test.d.ts","../../../node_modules/.bun/bun-types@1.3.6/node_modules/bun-types/wasm.d.ts","../../../node_modules/.bun/bun-types@1.3.6/node_modules/bun-types/overrides.d.ts","../../../node_modules/.bun/bun-types@1.3.6/node_modules/bun-types/deprecated.d.ts","../../../node_modules/.bun/bun-types@1.3.6/node_modules/bun-types/redis.d.ts","../../../node_modules/.bun/bun-types@1.3.6/node_modules/bun-types/shell.d.ts","../../../node_modules/.bun/bun-types@1.3.6/node_modules/bun-types/serve.d.ts","../../../node_modules/.bun/bun-types@1.3.6/node_modules/bun-types/sql.d.ts","../../../node_modules/.bun/bun-types@1.3.6/node_modules/bun-types/security.d.ts","../../../node_modules/.bun/bun-types@1.3.6/node_modules/bun-types/bundle.d.ts","../../../node_modules/.bun/bun-types@1.3.6/node_modules/bun-types/bun.ns.d.ts","../../../node_modules/.bun/bun-types@1.3.6/node_modules/bun-types/index.d.ts","../../../node_modules/.bun/@types+bun@1.3.6/node_modules/@types/bun/index.d.ts"],"fileIdsList":[[71,80,164,165,166,167,169,180,181,182,183,184,185,186,187,190],[71,77,80,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,79,80,164,165,166,167,169,180,181,182,183,184,185,186,187],[80,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,85,113,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,81,86,91,99,110,121,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,81,82,91,99,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,164,165,166,167,169,180,181,182,183,184,185,186,187],[66,67,68,71,80,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,83,122,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,84,85,92,100,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,85,110,118,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,86,88,91,99,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,79,80,87,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,88,89,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,90,91,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,79,80,91,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,91,92,93,110,121,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,91,92,93,106,110,113,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,88,91,94,99,110,121,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,91,92,94,95,99,110,118,121,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,94,96,110,118,121,164,165,166,167,169,180,181,182,183,184,185,186,187],[69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,91,97,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,98,121,126,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,88,91,99,110,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,100,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,101,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,79,80,102,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,104,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,105,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,91,106,107,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,106,108,122,124,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,91,110,111,113,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,112,113,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,110,111,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,113,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,114,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,77,80,110,115,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,91,116,117,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,116,117,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,85,99,110,118,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,119,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,99,120,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,94,105,121,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,85,122,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,110,123,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,98,124,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,125,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,163,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,91,93,102,110,113,121,124,126,163,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,110,127,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,85,92,94,118,122,126,163,164,165,166,169,170,180,181,182,183,184,185,186,187],[71,80,164,165,166,167,169,180,181,183,184,185,186,187],[71,80,164,165,166,167,180,181,182,183,184,185,186,187],[71,80,163,164,165,167,169,180,181,182,183,184,185,186,187],[71,80,85,102,110,113,118,122,126,163,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,128,164,165,166,167,168,169,170,171,172,173,179,180,181,182,183,184,185,186,187,188,189],[10,71,72,80,83,85,92,93,100,113,118,121,127,164,165,166,167,169,180,182,183,184,185,186,187],[71,80,164,165,166,167,169,180,181,182,184,185,186,187],[71,80,92,164,166,167,169,180,181,182,183,184,185,186,187],[71,80,164,165,166,167,169,180,181,182,183,184,185,186],[71,80,164,165,166,167,169,180,181,182,183,184,186,187],[71,80,164,165,166,167,169,180,181,182,183,185,186,187],[71,80,164,165,166,167,169,173,180,181,182,183,184,185,187],[71,80,164,165,166,167,169,178,180,181,182,183,184,185,186,187],[71,80,164,165,166,167,169,174,175,180,181,182,183,184,185,186,187],[71,80,164,165,166,167,169,174,175,176,177,180,181,182,183,184,185,186,187],[71,80,164,165,166,167,169,174,176,180,181,182,183,184,185,186,187],[71,80,164,165,166,167,169,174,180,181,182,183,184,185,186,187],[71,80,164,165,166,167,169,181,182,183,184,185,186,187],[71,80,121,135,139,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,110,121,135,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,130,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,118,121,132,135,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,99,118,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,128,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,128,130,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,99,121,132,135,164,165,166,167,169,180,181,182,183,184,185,186,187],[64,65,71,80,91,110,121,131,134,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,135,142,164,165,166,167,169,180,181,182,183,184,185,186,187],[64,71,80,133,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,135,156,157,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,113,121,128,131,135,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,128,156,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,128,129,130,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,135,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,129,130,131,132,133,134,135,136,137,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,157,158,159,160,161,162,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,135,150,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,135,142,143,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,133,135,143,144,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,134,164,165,166,167,169,180,181,182,183,184,185,186,187],[64,71,80,130,135,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,135,139,143,144,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,139,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,121,133,135,138,164,165,166,167,169,180,181,182,183,184,185,186,187],[64,71,80,132,135,142,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,110,164,165,166,167,169,180,181,182,183,184,185,186,187],[71,80,126,128,130,135,156,164,165,166,167,169,180,181,182,183,184,185,186,187],[60,71,80,164,165,166,167,169,180,181,182,183,184,185,186,187],[60,61,62,71,80,164,165,166,167,169,180,181,182,183,184,185,186,187]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2e80ee7a49e8ac312cc11b77f1475804bee36b3b2bc896bead8b6e1266befb43","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"2a9dd2e586f70f605633782c10f2a5ea75f7dd8396dca3bc7f7669e4812f7b06","signature":"c9608580c77a66ddbf60eb15a8ffb83b7859fdde77fbcefe50fc65ab432b05ce"},{"version":"5bff11ecd8b79525ae1922da1f12b5deb7799f359c81f0fb1df5c62be83a2478","signature":"d4a48751b4227ab81b82552c7d5efcfc4810bcca247298010215d874c3ab5191"},{"version":"82edc91abe13099b1dcd5d69b967ca709b215f12595c45cc6eb4bd25c17d86ae","signature":"d3a328c0eccf652bc8b6c14515a8b848a558b9d684e15a7c0c2e15de5016df57"},{"version":"d074e5f241cdacb492e54344320062064dc5071d4198481f5c45dc4036f2b1b8","signature":"31cfc7de1cd1aeeeffb31c418b2023ca3cdcce0f8723dddc9e2bf4c0def2e81c"},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","impliedFormat":1},{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"98cffbf06d6bab333473c70a893770dbe990783904002c4f1a960447b4b53dca","affectsGlobalScope":true,"impliedFormat":1},{"version":"ba481bca06f37d3f2c137ce343c7d5937029b2468f8e26111f3c9d9963d6568d","affectsGlobalScope":true,"impliedFormat":1},{"version":"6d9ef24f9a22a88e3e9b3b3d8c40ab1ddb0853f1bfbd5c843c37800138437b61","affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","affectsGlobalScope":true,"impliedFormat":1},{"version":"2cbe0621042e2a68c7cbce5dfed3906a1862a16a7d496010636cdbdb91341c0f","affectsGlobalScope":true,"impliedFormat":1},{"version":"e2677634fe27e87348825bb041651e22d50a613e2fdf6a4a3ade971d71bac37e","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"8c0bcd6c6b67b4b503c11e91a1fb91522ed585900eab2ab1f61bba7d7caa9d6f","impliedFormat":1},{"version":"8cd19276b6590b3ebbeeb030ac271871b9ed0afc3074ac88a94ed2449174b776","affectsGlobalScope":true,"impliedFormat":1},{"version":"696eb8d28f5949b87d894b26dc97318ef944c794a9a4e4f62360cd1d1958014b","impliedFormat":1},{"version":"3f8fa3061bd7402970b399300880d55257953ee6d3cd408722cb9ac20126460c","impliedFormat":1},{"version":"35ec8b6760fd7138bbf5809b84551e31028fb2ba7b6dc91d95d098bf212ca8b4","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"68bd56c92c2bd7d2339457eb84d63e7de3bd56a69b25f3576e1568d21a162398","affectsGlobalScope":true,"impliedFormat":1},{"version":"3e93b123f7c2944969d291b35fed2af79a6e9e27fdd5faa99748a51c07c02d28","impliedFormat":1},{"version":"9d19808c8c291a9010a6c788e8532a2da70f811adb431c97520803e0ec649991","impliedFormat":1},{"version":"87aad3dd9752067dc875cfaa466fc44246451c0c560b820796bdd528e29bef40","impliedFormat":1},{"version":"4aacb0dd020eeaef65426153686cc639a78ec2885dc72ad220be1d25f1a439df","impliedFormat":1},{"version":"f0bd7e6d931657b59605c44112eaf8b980ba7f957a5051ed21cb93d978cf2f45","impliedFormat":1},{"version":"8db0ae9cb14d9955b14c214f34dae1b9ef2baee2fe4ce794a4cd3ac2531e3255","affectsGlobalScope":true,"impliedFormat":1},{"version":"15fc6f7512c86810273af28f224251a5a879e4261b4d4c7e532abfbfc3983134","impliedFormat":1},{"version":"58adba1a8ab2d10b54dc1dced4e41f4e7c9772cbbac40939c0dc8ce2cdb1d442","impliedFormat":1},{"version":"2fd4c143eff88dabb57701e6a40e02a4dbc36d5eb1362e7964d32028056a782b","impliedFormat":1},{"version":"714435130b9015fae551788df2a88038471a5a11eb471f27c4ede86552842bc9","impliedFormat":1},{"version":"855cd5f7eb396f5f1ab1bc0f8580339bff77b68a770f84c6b254e319bbfd1ac7","impliedFormat":1},{"version":"5650cf3dace09e7c25d384e3e6b818b938f68f4e8de96f52d9c5a1b3db068e86","impliedFormat":1},{"version":"1354ca5c38bd3fd3836a68e0f7c9f91f172582ba30ab15bb8c075891b91502b7","affectsGlobalScope":true,"impliedFormat":1},{"version":"27fdb0da0daf3b337c5530c5f266efe046a6ceb606e395b346974e4360c36419","impliedFormat":1},{"version":"2d2fcaab481b31a5882065c7951255703ddbe1c0e507af56ea42d79ac3911201","impliedFormat":1},{"version":"a192fe8ec33f75edbc8d8f3ed79f768dfae11ff5735e7fe52bfa69956e46d78d","impliedFormat":1},{"version":"ca867399f7db82df981d6915bcbb2d81131d7d1ef683bc782b59f71dda59bc85","affectsGlobalScope":true,"impliedFormat":1},{"version":"0e456fd5b101271183d99a9087875a282323e3a3ff0d7bcf1881537eaa8b8e63","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e043a1bc8fbf2a255bccf9bf27e0f1caf916c3b0518ea34aa72357c0afd42ec","impliedFormat":1},{"version":"b4f70ec656a11d570e1a9edce07d118cd58d9760239e2ece99306ee9dfe61d02","impliedFormat":1},{"version":"3bc2f1e2c95c04048212c569ed38e338873f6a8593930cf5a7ef24ffb38fc3b6","impliedFormat":1},{"version":"6e70e9570e98aae2b825b533aa6292b6abd542e8d9f6e9475e88e1d7ba17c866","impliedFormat":1},{"version":"f9d9d753d430ed050dc1bf2667a1bab711ccbb1c1507183d794cc195a5b085cc","impliedFormat":1},{"version":"9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","impliedFormat":1},{"version":"47ab634529c5955b6ad793474ae188fce3e6163e3a3fb5edd7e0e48f14435333","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"45650f47bfb376c8a8ed39d4bcda5902ab899a3150029684ee4c10676d9fbaee","impliedFormat":1},{"version":"0225ecb9ed86bdb7a2c7fd01f1556906902929377b44483dc4b83e03b3ef227d","affectsGlobalScope":true,"impliedFormat":1},{"version":"74cf591a0f63db318651e0e04cb55f8791385f86e987a67fd4d2eaab8191f730","impliedFormat":1},{"version":"5eab9b3dc9b34f185417342436ec3f106898da5f4801992d8ff38ab3aff346b5","impliedFormat":1},{"version":"12ed4559eba17cd977aa0db658d25c4047067444b51acfdcbf38470630642b23","affectsGlobalScope":true,"impliedFormat":1},{"version":"f3ffabc95802521e1e4bcba4c88d8615176dc6e09111d920c7a213bdda6e1d65","impliedFormat":1},{"version":"ddc734b4fae82a01d247e9e342d020976640b5e93b4e9b3a1e30e5518883a060","impliedFormat":1},{"version":"ae56f65caf3be91108707bd8dfbccc2a57a91feb5daabf7165a06a945545ed26","impliedFormat":1},{"version":"a136d5de521da20f31631a0a96bf712370779d1c05b7015d7019a9b2a0446ca9","impliedFormat":1},{"version":"c3b41e74b9a84b88b1dca61ec39eee25c0dbc8e7d519ba11bb070918cfacf656","affectsGlobalScope":true,"impliedFormat":1},{"version":"4737a9dc24d0e68b734e6cfbcea0c15a2cfafeb493485e27905f7856988c6b29","affectsGlobalScope":true,"impliedFormat":1},{"version":"36d8d3e7506b631c9582c251a2c0b8a28855af3f76719b12b534c6edf952748d","impliedFormat":1},{"version":"1ca69210cc42729e7ca97d3a9ad48f2e9cb0042bada4075b588ae5387debd318","impliedFormat":1},{"version":"f5ebe66baaf7c552cfa59d75f2bfba679f329204847db3cec385acda245e574e","impliedFormat":1},{"version":"ed59add13139f84da271cafd32e2171876b0a0af2f798d0c663e8eeb867732cf","affectsGlobalScope":true,"impliedFormat":1},{"version":"05db535df8bdc30d9116fe754a3473d1b6479afbc14ae8eb18b605c62677d518","impliedFormat":1},{"version":"b1810689b76fd473bd12cc9ee219f8e62f54a7d08019a235d07424afbf074d25","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"6e215dac8b234548d91b718f9c07d5b09473cd5cabb29053fcd8be0af190acb6","affectsGlobalScope":true,"impliedFormat":1},{"version":"dbecf494aac7d3ee1b23cdaafae0d0bfea8590567fc153db58fe00ed9fa66c24","impliedFormat":1},{"version":"f3d3e999a323c85c8a63ce90c6e4624ff89fe137a0e2508fddc08e0556d08abf","impliedFormat":1},{"version":"c74b33e4465a03e398a080ec56b8f7cf19edba5d7c4dab482b4be4a5c4efb1ca","impliedFormat":1},{"version":"49ae37a1b5de16f762c8a151eeaec6b558ce3c27251052ef7a361144af42cad4","impliedFormat":1},{"version":"fc9e630f9302d0414ccd6c8ed2706659cff5ae454a56560c6122fa4a3fac5bbd","affectsGlobalScope":true,"impliedFormat":1},{"version":"aa0a44af370a2d7c1aac988a17836f57910a6c52689f52f5b3ac1d4c6cadcb23","impliedFormat":1},{"version":"0ac74c7586880e26b6a599c710b59284a284e084a2bbc82cd40fb3fbfdea71ae","affectsGlobalScope":true,"impliedFormat":1},{"version":"2ce12357dadbb8efc4e4ec4dab709c8071bf992722fc9adfea2fe0bd5b50923f","impliedFormat":1},{"version":"b5a907deaba678e5083ccdd7cc063a3a8c3413c688098f6de29d6e4cefabc85f","impliedFormat":1},{"version":"ffd344731abee98a0a85a735b19052817afd2156d97d1410819cd9bcd1bd575e","impliedFormat":1},{"version":"475e07c959f4766f90678425b45cf58ac9b95e50de78367759c1e5118e85d5c3","impliedFormat":1},{"version":"a524ae401b30a1b0814f1bbcdae459da97fa30ae6e22476e506bb3f82e3d9456","impliedFormat":1},{"version":"7375e803c033425e27cb33bae21917c106cb37b508fd242cccd978ef2ee244c7","impliedFormat":1},{"version":"eeb890c7e9218afdad2f30ad8a76b0b0b5161d11ce13b6723879de408e6bc47a","impliedFormat":1},{"version":"561c795984d06b91091780cebeac616e9e41d83240770e1af14e6ec083b713d5","impliedFormat":1},{"version":"dfbcc400ac6d20b941ccc7bd9031b9d9f54e4d495dd79117334e771959df4805","affectsGlobalScope":true,"impliedFormat":1},{"version":"944d65951e33a13068be5cd525ec42bf9bc180263ba0b723fa236970aa21f611","affectsGlobalScope":true,"impliedFormat":1},{"version":"6b386c7b6ce6f369d18246904fa5eac73566167c88fb6508feba74fa7501a384","affectsGlobalScope":true,"impliedFormat":1},{"version":"592a109e67b907ffd2078cd6f727d5c326e06eaada169eef8fb18546d96f6797","impliedFormat":1},{"version":"f2eb1e35cae499d57e34b4ac3650248776fe7dbd9a3ec34b23754cfd8c22fceb","impliedFormat":1},{"version":"fbed43a6fcf5b675f5ec6fc960328114777862b58a2bb19c109e8fc1906caa09","impliedFormat":1},{"version":"9e98bd421e71f70c75dae7029e316745c89fa7b8bc8b43a91adf9b82c206099c","impliedFormat":1},{"version":"fc803e6b01f4365f71f51f9ce13f71396766848204d4f7a1b2b6154434b84b15","impliedFormat":1},{"version":"f3afcc0d6f77a9ca2d2c5c92eb4b89cd38d6fa4bdc1410d626bd701760a977ec","impliedFormat":1},{"version":"c8109fe76467db6e801d0edfbc50e6826934686467c9418ce6b246232ce7f109","affectsGlobalScope":true,"impliedFormat":1},{"version":"e6f803e4e45915d58e721c04ec17830c6e6678d1e3e00e28edf3d52720909cea","affectsGlobalScope":true,"impliedFormat":1},{"version":"37be812b06e518320ba82e2aff3ac2ca37370a9df917db708f081b9043fa3315","impliedFormat":1}],"root":[[60,63]],"options":{"composite":true,"declaration":true,"declarationMap":true,"emitDeclarationOnly":true,"esModuleInterop":true,"module":99,"outDir":"./types","rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":9},"referencedMap":[[191,1],[77,2],[78,2],[79,3],[71,4],[80,5],[81,6],[82,7],[66,8],[69,9],[67,8],[68,8],[83,10],[84,11],[85,12],[86,13],[87,14],[88,15],[89,15],[90,16],[91,17],[92,18],[93,19],[72,8],[70,8],[94,20],[95,21],[96,22],[128,23],[97,24],[98,25],[99,26],[100,27],[101,28],[102,29],[103,30],[104,31],[105,32],[106,33],[107,33],[108,34],[109,8],[110,35],[112,36],[111,37],[113,38],[114,39],[115,40],[116,41],[117,42],[118,43],[119,44],[120,45],[121,46],[122,47],[123,48],[124,49],[125,50],[73,8],[74,8],[75,8],[76,51],[126,52],[127,53],[167,54],[189,8],[188,8],[182,55],[169,56],[168,8],[166,57],[170,8],[164,58],[171,8],[190,59],[172,8],[181,60],[183,61],[165,62],[187,63],[185,64],[184,65],[186,66],[173,8],[179,67],[176,68],[178,69],[177,70],[175,71],[174,8],[180,72],[58,8],[59,8],[10,8],[11,8],[13,8],[12,8],[2,8],[14,8],[15,8],[16,8],[17,8],[18,8],[19,8],[20,8],[21,8],[3,8],[22,8],[23,8],[4,8],[24,8],[28,8],[25,8],[26,8],[27,8],[29,8],[30,8],[31,8],[5,8],[32,8],[33,8],[34,8],[35,8],[6,8],[39,8],[36,8],[37,8],[38,8],[40,8],[7,8],[41,8],[46,8],[47,8],[42,8],[43,8],[44,8],[45,8],[8,8],[51,8],[48,8],[49,8],[50,8],[52,8],[9,8],[53,8],[54,8],[55,8],[57,8],[56,8],[1,8],[142,73],[152,74],[141,73],[162,75],[133,76],[132,77],[161,78],[155,79],[160,80],[135,81],[149,82],[134,83],[158,84],[130,85],[129,78],[159,86],[131,87],[136,88],[137,8],[140,88],[64,8],[163,89],[153,90],[144,91],[145,92],[147,93],[143,94],[146,95],[156,78],[138,96],[139,97],[148,98],[65,99],[151,90],[150,88],[154,8],[157,100],[61,101],[63,102],[60,8],[62,8]],"latestChangedDtsFile":"./types/index.d.ts","version":"5.9.3"}
|
package/dist/types/index.d.ts
CHANGED
|
@@ -5,6 +5,6 @@
|
|
|
5
5
|
*/
|
|
6
6
|
export { BaseElement } from './base-element.js';
|
|
7
7
|
export type { PropertyDefinition, PropertyDefinitions } from './base-element.js';
|
|
8
|
-
export { css, combineStyles, cssVars, defaultTheme, resetStyles } from './styles.js';
|
|
8
|
+
export { css, combineStyles, cssVars, defaultTheme, resetStyles, lightThemeColors } from './styles.js';
|
|
9
9
|
export type { CSSValue, Size, Variant, ValidationState, BaseElementProps, SizableProps, VariantProps, FormElementProps, ValidatableProps, ValueChangeEventDetail, AttributeConverter, } from './types.js';
|
|
10
10
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAGH,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAChD,YAAY,EAAE,kBAAkB,EAAE,mBAAmB,EAAE,MAAM,mBAAmB,CAAC;AAGjF,OAAO,EAAE,GAAG,EAAE,aAAa,EAAE,OAAO,EAAE,YAAY,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAGH,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAChD,YAAY,EAAE,kBAAkB,EAAE,mBAAmB,EAAE,MAAM,mBAAmB,CAAC;AAGjF,OAAO,EAAE,GAAG,EAAE,aAAa,EAAE,OAAO,EAAE,YAAY,EAAE,WAAW,EAAE,gBAAgB,EAAE,MAAM,aAAa,CAAC;AAGvG,YAAY,EACV,QAAQ,EACR,IAAI,EACJ,OAAO,EACP,eAAe,EACf,gBAAgB,EAChB,YAAY,EACZ,YAAY,EACZ,gBAAgB,EAChB,gBAAgB,EAChB,sBAAsB,EACtB,kBAAkB,GACnB,MAAM,YAAY,CAAC"}
|
package/dist/types/styles.d.ts
CHANGED
|
@@ -46,8 +46,17 @@ export declare function cssVars(vars: Record<string, string | number>): string;
|
|
|
46
46
|
/**
|
|
47
47
|
* Default theme CSS custom properties
|
|
48
48
|
* Uses --color-* naming to be compatible with @duskmoon-dev/core
|
|
49
|
+
*
|
|
50
|
+
* Note: Color variables are NOT set here to allow inheritance from document.
|
|
51
|
+
* Document should provide these via :root or [data-theme] selectors.
|
|
52
|
+
* Only non-color design tokens are set as defaults.
|
|
49
53
|
*/
|
|
50
54
|
export declare const defaultTheme: CSSStyleSheet;
|
|
55
|
+
/**
|
|
56
|
+
* Light theme color defaults
|
|
57
|
+
* Apply this to :root or document for light theme
|
|
58
|
+
*/
|
|
59
|
+
export declare const lightThemeColors = "\n /* Primary colors */\n --color-primary: oklch(60% 0.15 250);\n --color-primary-content: white;\n --color-on-primary: white;\n\n /* Secondary colors */\n --color-secondary: oklch(55% 0.1 250);\n --color-secondary-content: white;\n --color-on-secondary: white;\n\n /* Tertiary colors */\n --color-tertiary: oklch(50% 0.12 300);\n --color-tertiary-content: white;\n --color-on-tertiary: white;\n\n /* Surface colors */\n --color-surface: white;\n --color-surface-container: oklch(97% 0.01 250);\n --color-surface-container-low: oklch(98% 0.005 250);\n --color-surface-container-high: oklch(94% 0.01 250);\n --color-on-surface: oklch(25% 0.02 250);\n --color-on-surface-variant: oklch(45% 0.02 250);\n\n /* Outline colors */\n --color-outline: oklch(75% 0.02 250);\n --color-outline-variant: oklch(85% 0.01 250);\n\n /* Semantic colors */\n --color-success: oklch(60% 0.15 145);\n --color-warning: oklch(75% 0.15 85);\n --color-error: oklch(55% 0.2 25);\n --color-info: oklch(60% 0.15 250);\n\n /* Shadows */\n --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);\n --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);\n --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);\n\n /* Focus */\n --focus-ring: 0 0 0 2px var(--color-primary);\n --focus-ring-offset: 0 0 0 2px white, 0 0 0 4px var(--color-primary);\n";
|
|
51
60
|
/**
|
|
52
61
|
* Reset styles for Shadow DOM elements
|
|
53
62
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"styles.d.ts","sourceRoot":"","sources":["../../src/styles.ts"],"names":[],"mappings":"AAAA;;GAEG;AAOH;;;;;;;;;;;;;;;;GAgBG;AACH,wBAAgB,GAAG,CAAC,OAAO,EAAE,oBAAoB,EAAE,GAAG,MAAM,EAAE,CAAC,MAAM,GAAG,MAAM,CAAC,EAAE,GAAG,aAAa,CAuBhG;AAED;;;;;;GAMG;AACH,wBAAgB,aAAa,CAAC,GAAG,MAAM,EAAE,aAAa,EAAE,GAAG,aAAa,EAAE,CAEzE;AAED;;;;;;;;;;;;;;GAcG;AACH,wBAAgB,OAAO,CAAC,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,CAAC,GAAG,MAAM,CAIrE;AAED;;;GAGG;AACH,eAAO,MAAM,
|
|
1
|
+
{"version":3,"file":"styles.d.ts","sourceRoot":"","sources":["../../src/styles.ts"],"names":[],"mappings":"AAAA;;GAEG;AAOH;;;;;;;;;;;;;;;;GAgBG;AACH,wBAAgB,GAAG,CAAC,OAAO,EAAE,oBAAoB,EAAE,GAAG,MAAM,EAAE,CAAC,MAAM,GAAG,MAAM,CAAC,EAAE,GAAG,aAAa,CAuBhG;AAED;;;;;;GAMG;AACH,wBAAgB,aAAa,CAAC,GAAG,MAAM,EAAE,aAAa,EAAE,GAAG,aAAa,EAAE,CAEzE;AAED;;;;;;;;;;;;;;GAcG;AACH,wBAAgB,OAAO,CAAC,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,CAAC,GAAG,MAAM,CAIrE;AAED;;;;;;;GAOG;AACH,eAAO,MAAM,YAAY,eAiCxB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,gBAAgB,gzCA0C5B,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,WAAW,eAcvB,CAAC"}
|