@stencil/core 5.0.0-alpha.4 → 5.0.0-alpha.5
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/{client-Dti6fFpE.mjs → client-Dnio47yQ.mjs} +81 -10
- package/dist/compiler/index.d.mts +2 -2
- package/dist/compiler/index.mjs +2 -2
- package/dist/compiler/utils/index.d.mts +2 -2
- package/dist/compiler/utils/index.mjs +3 -3
- package/dist/{compiler-BYRrEeD-.mjs → compiler-Dxri2g8Z.mjs} +15313 -14822
- package/dist/declarations/stencil-public-compiler.d.ts +288 -132
- package/dist/declarations/stencil-public-compiler.js +2 -3
- package/dist/declarations/stencil-public-runtime.d.ts +2 -0
- package/dist/{index-hS-KBdAP.d.ts → index-D-XN9HW_.d.ts} +1 -1
- package/dist/{index-BwTaN1Nq.d.mts → index-D5zaocDq.d.mts} +357 -189
- package/dist/{index-CyrGY82h.d.ts → index-D61XZw0f.d.ts} +2 -2
- package/dist/{index-9LTuoSiw.d.mts → index-Dat4djoo.d.mts} +1 -1
- package/dist/index.mjs +1 -1
- package/dist/{jsx-runtime-DlDkTqps.d.ts → jsx-runtime-B3vQbWIW.d.ts} +1 -1
- package/dist/jsx-runtime.d.ts +1 -1
- package/dist/jsx-runtime.js +1 -1
- package/dist/{node-BF2jSfWg.mjs → node-pj6rF4Wt.mjs} +66 -69
- package/dist/{regular-expression-D5pGVpCu.mjs → regular-expression-D0_N0PGa.mjs} +44 -26
- package/dist/runtime/app-data/index.d.ts +1 -1
- package/dist/runtime/client/index.d.ts +41 -8
- package/dist/runtime/client/index.js +105 -31
- package/dist/runtime/index.d.ts +29 -5
- package/dist/runtime/index.js +2 -2
- package/dist/runtime/server/index.d.mts +56 -25
- package/dist/runtime/server/index.mjs +122 -37
- package/dist/runtime/server/runner.d.mts +40 -26
- package/dist/runtime/server/runner.mjs +28 -22
- package/dist/{runtime-COEYYPyw.js → runtime-CKyUrF4i.js} +104 -30
- package/dist/sys/node/index.d.mts +1 -1
- package/dist/sys/node/index.mjs +1 -1
- package/dist/sys/node/worker.mjs +2 -2
- package/dist/testing/index.d.mts +2 -2
- package/dist/testing/index.mjs +15 -15
- package/dist/{validation-Byxie0Uk.mjs → validation-BA8nzXu_.mjs} +82 -58
- package/package.json +11 -12
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { B as LISTENER_FLAGS, F as EVENT_FLAGS, H as MEMBER_FLAGS, J as SVG_NS, R as HOST_FLAGS, S as queryNonceMetaTagContent, U as NODE_TYPES, Z as WATCH_FLAGS, c as isDef, s as isComplexType, t as escapeRegExpSpecialCharacters, w as CMP_FLAGS, z as HTML_NS } from "./regular-expression-D0_N0PGa.mjs";
|
|
2
2
|
//#region src/app-data/index.ts
|
|
3
3
|
/**
|
|
4
4
|
* A collection of default build flags for a Stencil project.
|
|
@@ -1386,7 +1386,8 @@ const addStyle = (styleContainerNode, cmpMeta, mode) => {
|
|
|
1386
1386
|
styleElm.textContent = style;
|
|
1387
1387
|
const nonce = plt.$nonce$ ?? queryNonceMetaTagContent(win.document);
|
|
1388
1388
|
if (nonce != null) styleElm.setAttribute("nonce", nonce);
|
|
1389
|
-
if (
|
|
1389
|
+
if (BUILD.hydrateServerSide && (cmpMeta.$flags$ & CMP_FLAGS.scopedCssEncapsulation || cmpMeta.$flags$ & CMP_FLAGS.shadowNeedsScopedCss || cmpMeta.$flags$ & CMP_FLAGS.shadowDomEncapsulation) || BUILD.hotModuleReplacement) styleElm.setAttribute(HYDRATED_STYLE_ID, scopeId);
|
|
1390
|
+
if (BUILD.hotModuleReplacement && cmpMeta.$flags$ & CMP_FLAGS.hasSlotRelocation) styleElm.setAttribute("data-slot-fb", "");
|
|
1390
1391
|
/**
|
|
1391
1392
|
* attach styles at the end of the head tag if we render scoped components
|
|
1392
1393
|
*/
|
|
@@ -2466,6 +2467,46 @@ const computeMode = (elm) => modeResolutionChain.map((h) => h(elm)).find((m) =>
|
|
|
2466
2467
|
const setMode = (handler) => modeResolutionChain.push(handler);
|
|
2467
2468
|
const getMode = (ref) => getHostRef(ref)?.$modeName$;
|
|
2468
2469
|
//#endregion
|
|
2470
|
+
//#region src/runtime/normalize-watchers.ts
|
|
2471
|
+
/**
|
|
2472
|
+
* Normalizes watcher metadata to the current `{ [methodName]: flags }[]` format.
|
|
2473
|
+
*
|
|
2474
|
+
* Prior to Stencil 4.39.x (PR #6484), the `@Watch()` compiler emitted watcher
|
|
2475
|
+
* handlers as a plain string array: `{ "min": ["minChanged"] }`. The new format
|
|
2476
|
+
* wraps each entry in an object that carries option flags (e.g. `immediate`):
|
|
2477
|
+
* `{ "min": [{ "minChanged": 0 }] }`.
|
|
2478
|
+
*
|
|
2479
|
+
* When a library (e.g. Ionic Framework) was compiled with an older Stencil compiler
|
|
2480
|
+
* but consumed by an app using a newer Stencil runtime, the runtime's
|
|
2481
|
+
* `Object.entries(watcher)` call receives a string and misinterprets its character
|
|
2482
|
+
* indices as method names, causing:
|
|
2483
|
+
* `TypeError: instance[watchMethodName] is not a function`
|
|
2484
|
+
*
|
|
2485
|
+
* This helper should be used at `$watchers$` assignment sites that need to
|
|
2486
|
+
* accept both legacy and current compiler metadata so downstream code on those
|
|
2487
|
+
* paths can safely assume the new object format.
|
|
2488
|
+
*
|
|
2489
|
+
* @param raw The raw watcher map from compiled metadata (new or legacy format).
|
|
2490
|
+
* @returns A normalized watcher map in the `{ [methodName]: flags }[]` format, or `undefined` if `raw` is `undefined` or empty.
|
|
2491
|
+
*/
|
|
2492
|
+
const normalizeWatchers = (raw) => {
|
|
2493
|
+
if (!raw) return void 0;
|
|
2494
|
+
const keys = Object.keys(raw);
|
|
2495
|
+
if (keys.length === 0) return void 0;
|
|
2496
|
+
let hasLegacy = false;
|
|
2497
|
+
for (const propName of keys) {
|
|
2498
|
+
if (hasLegacy) break;
|
|
2499
|
+
for (const h of raw[propName]) if (typeof h === "string") {
|
|
2500
|
+
hasLegacy = true;
|
|
2501
|
+
break;
|
|
2502
|
+
}
|
|
2503
|
+
}
|
|
2504
|
+
if (!hasLegacy) return raw;
|
|
2505
|
+
const out = {};
|
|
2506
|
+
for (const propName of keys) out[propName] = raw[propName].map((h) => typeof h === "string" ? { [h]: 0 } : h);
|
|
2507
|
+
return out;
|
|
2508
|
+
};
|
|
2509
|
+
//#endregion
|
|
2469
2510
|
//#region src/runtime/parse-property-value.ts
|
|
2470
2511
|
/**
|
|
2471
2512
|
* Parse a new property value for a given property type.
|
|
@@ -3816,7 +3857,7 @@ const proxyComponent = (Cstr, cmpMeta, flags) => {
|
|
|
3816
3857
|
});
|
|
3817
3858
|
if (BUILD.member && cmpMeta.$members$ || BUILD.propChangeCallback) {
|
|
3818
3859
|
if (BUILD.propChangeCallback) {
|
|
3819
|
-
if (Cstr.watchers && !cmpMeta.$watchers$) cmpMeta.$watchers$ = Cstr.watchers;
|
|
3860
|
+
if (Cstr.watchers && !cmpMeta.$watchers$) cmpMeta.$watchers$ = normalizeWatchers(Cstr.watchers);
|
|
3820
3861
|
if (Cstr.deserializers && !cmpMeta.$deserializers$) cmpMeta.$deserializers$ = Cstr.deserializers;
|
|
3821
3862
|
if (Cstr.serializers && !cmpMeta.$serializers$) cmpMeta.$serializers$ = Cstr.serializers;
|
|
3822
3863
|
}
|
|
@@ -3966,7 +4007,7 @@ const initializeComponent = async (elm, hostRef, cmpMeta, hmrVersionId) => {
|
|
|
3966
4007
|
if (!Cstr) throw new Error(`Constructor for "${cmpMeta.$tagName$}#${hostRef.$modeName$}" was not found`);
|
|
3967
4008
|
if (BUILD.member && !Cstr.isProxied) {
|
|
3968
4009
|
if (BUILD.propChangeCallback) {
|
|
3969
|
-
cmpMeta.$watchers$ = Cstr.watchers;
|
|
4010
|
+
cmpMeta.$watchers$ = normalizeWatchers(Cstr.watchers);
|
|
3970
4011
|
cmpMeta.$serializers$ = Cstr.serializers;
|
|
3971
4012
|
cmpMeta.$deserializers$ = Cstr.deserializers;
|
|
3972
4013
|
}
|
|
@@ -4152,19 +4193,49 @@ const disconnectedCallback = async (elm) => {
|
|
|
4152
4193
|
* 3. re-run the initialization logic for the element (via
|
|
4153
4194
|
* {@link initializeComponent})
|
|
4154
4195
|
*
|
|
4196
|
+
* For standalone (non-lazy) builds, we instead re-import the component module
|
|
4197
|
+
* and patch the prototype of the registered constructor in-place, then
|
|
4198
|
+
* force a re-render of all existing instances in the DOM.
|
|
4199
|
+
*
|
|
4155
4200
|
* @param hostElement the host element for the component which we want to start
|
|
4156
4201
|
* doing HMR
|
|
4157
4202
|
* @param cmpMeta runtime metadata for the component
|
|
4158
4203
|
* @param hmrVersionId the current HMR version ID
|
|
4159
4204
|
*/
|
|
4160
4205
|
const hmrStart = (hostElement, cmpMeta, hmrVersionId) => {
|
|
4161
|
-
|
|
4162
|
-
|
|
4163
|
-
|
|
4164
|
-
|
|
4206
|
+
if (BUILD.lazyLoad) {
|
|
4207
|
+
const hostRef = getHostRef(hostElement);
|
|
4208
|
+
if (!hostRef) return;
|
|
4209
|
+
hostRef.$flags$ = HOST_FLAGS.hasConnected;
|
|
4210
|
+
initializeComponent(hostElement, hostRef, cmpMeta, hmrVersionId);
|
|
4211
|
+
} else hmrStandalone(hostElement, cmpMeta, hmrVersionId);
|
|
4212
|
+
};
|
|
4213
|
+
const hmrStandalone = async (hostElement, cmpMeta, hmrVersionId) => {
|
|
4214
|
+
const modulePath = hostElement.constructor.__stencil_module__;
|
|
4215
|
+
console.log(`[Stencil HMR] hmrStandalone <${cmpMeta.$tagName$}> modulePath:`, modulePath);
|
|
4216
|
+
if (!modulePath) {
|
|
4217
|
+
console.warn(`[Stencil HMR] No __stencil_module__ on <${cmpMeta.$tagName$}> constructor — was this built with devMode?`);
|
|
4218
|
+
return;
|
|
4219
|
+
}
|
|
4220
|
+
try {
|
|
4221
|
+
const newModule = await import(
|
|
4222
|
+
/* @vite-ignore */
|
|
4223
|
+
`${modulePath}?s-hmr=${hmrVersionId}`
|
|
4224
|
+
);
|
|
4225
|
+
const NewClass = Object.values(newModule).find((v) => typeof v === "function" && v.is === cmpMeta.$tagName$) ?? newModule.default;
|
|
4226
|
+
if (!NewClass) return;
|
|
4227
|
+
const ctor = customElements.get(cmpMeta.$tagName$);
|
|
4228
|
+
if (ctor) for (const key of Object.getOwnPropertyNames(NewClass.prototype)) {
|
|
4229
|
+
if (key === "constructor") continue;
|
|
4230
|
+
Object.defineProperty(ctor.prototype, key, Object.getOwnPropertyDescriptor(NewClass.prototype, key));
|
|
4231
|
+
}
|
|
4232
|
+
document.querySelectorAll(cmpMeta.$tagName$).forEach((el) => forceUpdate(el));
|
|
4233
|
+
} catch (e) {
|
|
4234
|
+
console.error(`[Stencil HMR] Failed to reload <${cmpMeta.$tagName$}>`, e);
|
|
4235
|
+
}
|
|
4165
4236
|
};
|
|
4166
4237
|
//#endregion
|
|
4167
|
-
//#region src/runtime/bootstrap-
|
|
4238
|
+
//#region src/runtime/bootstrap-loader.ts
|
|
4168
4239
|
const bootstrapLazy = (lazyBundles, options = {}) => {
|
|
4169
4240
|
if (BUILD.profile && performance.mark) performance.mark("st:app:start");
|
|
4170
4241
|
installDevTools();
|
|
@@ -4198,7 +4269,7 @@ const bootstrapLazy = (lazyBundles, options = {}) => {
|
|
|
4198
4269
|
if (BUILD.hostListener) cmpMeta.$listeners$ = compactMeta[3];
|
|
4199
4270
|
if (BUILD.reflect) cmpMeta.$attrsToReflect$ = [];
|
|
4200
4271
|
if (BUILD.propChangeCallback) {
|
|
4201
|
-
cmpMeta.$watchers$ = compactMeta[4]
|
|
4272
|
+
cmpMeta.$watchers$ = normalizeWatchers(compactMeta[4]);
|
|
4202
4273
|
cmpMeta.$serializers$ = compactMeta[5] ?? {};
|
|
4203
4274
|
cmpMeta.$deserializers$ = compactMeta[6] ?? {};
|
|
4204
4275
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { $ as ComponentCompilerVirtualProperty, $i as
|
|
1
|
+
import { $ as ComponentCompilerVirtualProperty, $i as SystemDetails, $n as CompilerDependency, $r as LoggerLineUpdater, $t as RenderNode, A as CompilerStyleDoc, Aa as JsonDocsTypeLibrary, Ai as PrerenderConfig, An as TypesModule, Ar as ConfigExtras, At as LazyBundleRuntimeData, B as ComponentCompilerMeta, Bi as RolldownConfig, Bn as BuildLog, Br as FsWatchResults, Bt as PackageJsonData, C as CompilerBuildStatBundle, Ca as JsonDocsMethod, Ci as OutputTargetStats, Cn as StyleMap, Cr as CompilerSystemRemoveFileResults, Ct as EventInitDict, D as CompilerJsDoc, Da as JsonDocsSlot, Di as PageReloadStrategy, Dn as TypeInfo, Dr as CompilerWatcher, Dt as ImportData, E as CompilerCtx, Ea as JsonDocsProp, Ei as OutputTargetWww, En as TranspileModuleResults, Er as CompilerSystemWriteFileResults, Et as HostRef, F as ComponentCompilerData, Fi as ResolveModuleIdOptions, Fn as WorkerContextMethod, Fr as CustomElementsExportBehaviorOptions, Ft as MsgFromWorker, G as ComponentCompilerPropertyType, Gi as ServiceWorkerConfig, Gn as BuildResultsComponentGraph, Gr as HydrateFactoryOptions, Gt as PluginCtx, H as ComponentCompilerMethodComplexType, Hi as RolldownInterface, Hn as BuildOnEventRemove, Hr as HmrStyleUpdate, Ht as PatchedSlotNode, I as ComponentCompilerEvent, Ii as ResolveModuleIdResults, In as WorkerMsgHandler, Ir as DevServer, It as MsgToWorker, J as ComponentCompilerStaticEvent, Ji as SsrDocumentOptions, Jn as CompileScriptMinifyOptions, Jr as LazyRequire, Jt as PrerenderManager, K as ComponentCompilerReferencedType, Ki as SitemapXmpOpts, Kn as CacheStorage, Kr as HydratedFlag, Kt as PluginTransformResults, L as ComponentCompilerEventComplexType, Li as ResolveModuleOptions, Ln as AutoprefixerOptions, Lr as DevServerConfig, Lt as NewSpecPageOptions, M as CompilerWorkerTask, Ma as JsonDocsValue, Mi as PrerenderOptions, Mn as VNodeProdData, Mr as CopyTask, Mt as Module, N as ComponentCompilerChangeHandler, Na as StyleDoc, Ni as PrerenderResults, Nn as ValidateTypesResults, Nr as Credentials, Nt as ModuleFormat, O as CompilerJsDocTagInfo, Oa as JsonDocsStyle, Oi as ParsedPath, On as TypesImportData, Or as Config, Ot as JSDocTagInfo, P as ComponentCompilerCustomState, Pa as FsWriteResults, Pi as PrerenderStartOptions, Pn as Workbox, Pr as CustomElementsExportBehavior, Pt as ModuleMap, Q as ComponentCompilerTypeReferences, Qi as StencilDocsConfig, Qn as CompilerBuildStart, Qr as Logger, Qt as PropsType, R as ComponentCompilerFeatures, Ri as RobotsTxtOpts, Rn as BuildEmitEvents, Rr as DevServerEditor, Rt as NodeMap, S as CompilerAssetDir, Sa as JsonDocsListener, Si as OutputTargetStandalone, Sn as StyleCompiler, Sr as CompilerSystemRemoveDirectoryResults, St as EntryModule, T as CompilerBuildStats, Ta as JsonDocsPart, Ti as OutputTargetTypes, Tn as TransformCssToEsmOutput, Tr as CompilerSystemRenamedPath, Tt as HostElement, U as ComponentCompilerProperty, Ui as RolldownOutputOptions, Un as BuildOnEvents, Ur as HotModuleReplacement, Ut as PlatformRuntime, V as ComponentCompilerMethod, Vi as RolldownInputOptions, Vn as BuildNoChangeResults, Vr as HistoryApiFallback, Vt as ParsedImport, W as ComponentCompilerPropertyComplexType, Wi as SerializeDocumentOptions, Wn as BuildOutput, Wr as HydrateDocumentOptions, Wt as Plugin, X as ComponentCompilerStaticProperty, Xi as StencilConfig, Xn as Compiler, Xr as LoadConfigResults, Xt as PrerenderUrlResults, Y as ComponentCompilerStaticMethod, Yi as SsrFactoryOptions, Yn as CompileTarget, Yr as LoadConfigInit, Yt as PrerenderUrlRequest, Z as ComponentCompilerTypeReference, Zi as StencilDevServerConfig, Zn as CompilerBuildResults, Zr as LogLevel, Zt as PrintLine, _ as CollectionCompilerVersion, _a as JsonDocs, _i as OutputTargetDocsReadme, _n as SsrResults, _r as CompilerSystem, _t as CssImportData, a as BuildCtx, aa as ValidatedConfig, ai as OptimizeJsOutput, an as RolldownSourceMap, ar as CompilerEventDirDelete, at as ComponentConstructorProperties, b as CollectionDependencyManifest, ba as JsonDocsDependencyGraph, bi as OutputTargetLoaderBundle, bn as SsrStyleElement, br as CompilerSystemRealpathResults, bt as DocData, c as BuildStyleUpdate, ca as WorkerOptions, ci as OutputTargetBase, cn as SerializeImportData, cr as CompilerEventFileUpdate, ct as ComponentNativeConstructor, d as BundleModuleOutput, di as OutputTargetCopy, dn as SourceTarget, dr as CompilerFileWatcher, dt as ComponentRuntimeMember, ea as TransformOptions, ei as LoggerTimeSpan, en as RolldownAssetResult, er as CompilerEventBuildFinish, et as ComponentConstructor, f as Cache, fi as OutputTargetCustom, fn as SpecPage, fr as CompilerFileWatcherCallback, ft as ComponentRuntimeMembers, g as CollectionCompilerMeta, ga as JsonDocMethodParameter, gi as OutputTargetDocsJson, gn as SsrImgElement, gr as CompilerRequestResponse, gt as ComponentTestingConstructor, h as CollectionCompiler, hi as OutputTargetDocsCustomElementsManifest, hn as SsrElement, hr as CompilerRequest, ht as ComponentRuntimeReflectingAttr, i as BuildConditionals, ia as UnvalidatedConfig, ii as OptimizeJsInput, in as RolldownResults, ir as CompilerEventDirAdd, it as ComponentConstructorListener, j as CompilerWorkerContext, ja as JsonDocsUsage, ji as PrerenderHydrateOptions, jn as UpdatedLazyBuildCtx, jr as CopyResults, jt as LazyBundlesRuntimeData, k as CompilerModeStyles, ka as JsonDocsTag, ki as PlatformPath, kn as TypesMemberNameData, kr as ConfigBundle, kt as JsDoc, l as BuildTask, li as OutputTargetBaseNext, ln as SerializedEvent, lr as CompilerEventFsChange, lt as ComponentPatches, m as CollectionBundleManifest, mi as OutputTargetDocsCustom, mn as SsrComponent, mr as CompilerFsStats, mt as ComponentRuntimeMetaCompact, n as AssetsMeta, na as TranspileOptions, ni as OptimizeCssInput, nn as RolldownResult, nr as CompilerEventBuildNoChange, nt as ComponentConstructorEncapsulation, o as BuildFeatures, oa as WatcherCloseResults, oi as OutputTarget, on as RootAppliedStyleMap, or as CompilerEventFileAdd, ot as ComponentConstructorProperty, p as ChildType, pi as OutputTargetDistLazy, pn as SsrAnchorElement, pr as CompilerFileWatcherEvent, pt as ComponentRuntimeMeta, q as ComponentCompilerState, qi as SitemapXmpResults, qn as CliInitOptions, qr as LOG_LEVELS, qt as PluginTransformationDescriptor, r as BuildComponent, ra as TranspileResults, ri as OptimizeCssOutput, rn as RolldownResultModule, rr as CompilerEventBuildStart, rt as ComponentConstructorEvent, s as BuildSourceGraph, sa as WorkerMainController, si as OutputTargetAssets, sn as RuntimeRef, sr as CompilerEventFileDelete, st as ComponentConstructorPropertyType, t as AnyHTMLElement, ta as TranspileOnlyResults, ti as NodeResolveConfig, tn as RolldownChunkResult, tr as CompilerEventBuildLog, tt as ComponentConstructorChangeHandlers, u as BundleModule, ui as OutputTargetBuild, un as SourceMap, ur as CompilerEventName, ut as ComponentRuntimeHostListener, v as CollectionComponentEntryPath, va as JsonDocsComponent, vi as OutputTargetDocsVscode, vn as SsrScriptElement, vr as CompilerSystemCreateDirectoryOptions, vt as CssToEsmImportData, w as CompilerBuildStatCollection, wa as JsonDocsMethodReturn, wi as OutputTargetStencilRebundle, wn as TransformCssToEsmInput, wr as CompilerSystemRenameResults, wt as ExternalStyleCompiler, x as CollectionManifest, xa as JsonDocsEvent, xi as OutputTargetSsr, xn as StencilDocument, xr as CompilerSystemRemoveDirectoryOptions, xt as Encapsulation, y as CollectionDependencyData, ya as JsonDocsCustomState, yi as OutputTargetGlobalStyle, yn as SsrStaticData, yr as CompilerSystemCreateDirectoryResults, yt as CssTransformCacheEntry, z as ComponentCompilerListener, zi as RobotsTxtResults, zn as BuildEvents, zr as Diagnostic, zt as OptimizeJsResult } from "../index-D5zaocDq.mjs";
|
|
2
2
|
import ts from "typescript";
|
|
3
3
|
|
|
4
4
|
//#region src/version.d.ts
|
|
@@ -189,4 +189,4 @@ type ConfigValidationResults = {
|
|
|
189
189
|
*/
|
|
190
190
|
declare const validateConfig: (userConfig: UnvalidatedConfig, bootstrapConfig: LoadConfigInit) => ConfigValidationResults;
|
|
191
191
|
//#endregion
|
|
192
|
-
export { AnyHTMLElement, AssetsMeta, AutoprefixerOptions, BuildComponent, BuildConditionals, BuildCtx, BuildEmitEvents, BuildEvents, BuildFeatures, BuildLog, BuildNoChangeResults, BuildOnEventRemove, BuildOnEvents, BuildOutput, BuildResultsComponentGraph, BuildSourceGraph, BuildStyleUpdate, BuildTask, BundleModule, BundleModuleOutput, Cache, CacheStorage, ChildType, CliInitOptions, CollectionBundleManifest, CollectionCompiler, CollectionCompilerMeta, CollectionCompilerVersion, CollectionComponentEntryPath, CollectionDependencyData, CollectionDependencyManifest, CollectionManifest, CompileScriptMinifyOptions, CompileTarget, Compiler, CompilerAssetDir, CompilerBuildResults, CompilerBuildStart, CompilerBuildStatBundle, CompilerBuildStatCollection, CompilerBuildStats, CompilerCtx, CompilerDependency, CompilerEventBuildFinish, CompilerEventBuildLog, CompilerEventBuildNoChange, CompilerEventBuildStart, CompilerEventDirAdd, CompilerEventDirDelete, CompilerEventFileAdd, CompilerEventFileDelete, CompilerEventFileUpdate, CompilerEventFsChange, CompilerEventName, CompilerFileWatcher, CompilerFileWatcherCallback, CompilerFileWatcherEvent, CompilerFsStats, CompilerJsDoc, CompilerJsDocTagInfo, CompilerModeStyles, CompilerRequest, CompilerRequestResponse, CompilerStyleDoc, CompilerSystem, CompilerSystemCreateDirectoryOptions, CompilerSystemCreateDirectoryResults, CompilerSystemRealpathResults, CompilerSystemRemoveDirectoryOptions, CompilerSystemRemoveDirectoryResults, CompilerSystemRemoveFileResults, CompilerSystemRenameResults, CompilerSystemRenamedPath, CompilerSystemWriteFileResults, CompilerWatcher, CompilerWorkerContext, CompilerWorkerTask, ComponentCompilerChangeHandler, ComponentCompilerCustomState, ComponentCompilerData, ComponentCompilerEvent, ComponentCompilerEventComplexType, ComponentCompilerFeatures, ComponentCompilerListener, ComponentCompilerMeta, ComponentCompilerMethod, ComponentCompilerMethodComplexType, ComponentCompilerProperty, ComponentCompilerPropertyComplexType, ComponentCompilerPropertyType, ComponentCompilerReferencedType, ComponentCompilerState, ComponentCompilerStaticEvent, ComponentCompilerStaticMethod, ComponentCompilerStaticProperty, ComponentCompilerTypeReference, ComponentCompilerTypeReferences, ComponentCompilerVirtualProperty, ComponentConstructor, ComponentConstructorChangeHandlers, ComponentConstructorEncapsulation, ComponentConstructorEvent, ComponentConstructorListener, ComponentConstructorProperties, ComponentConstructorProperty, ComponentConstructorPropertyType, ComponentNativeConstructor, ComponentPatches, ComponentRuntimeHostListener, ComponentRuntimeMember, ComponentRuntimeMembers, ComponentRuntimeMeta, ComponentRuntimeMetaCompact, ComponentRuntimeReflectingAttr, ComponentTestingConstructor, Config, ConfigBundle, ConfigExtras, CopyResults, CopyTask, Credentials, CssImportData, CssToEsmImportData, CssTransformCacheEntry, CustomElementsExportBehavior, CustomElementsExportBehaviorOptions, DevServer, DevServerConfig, DevServerEditor, Diagnostic, DocData,
|
|
192
|
+
export { AnyHTMLElement, AssetsMeta, AutoprefixerOptions, BuildComponent, BuildConditionals, BuildCtx, BuildEmitEvents, BuildEvents, BuildFeatures, BuildLog, BuildNoChangeResults, BuildOnEventRemove, BuildOnEvents, BuildOutput, BuildResultsComponentGraph, BuildSourceGraph, BuildStyleUpdate, BuildTask, BundleModule, BundleModuleOutput, Cache, CacheStorage, ChildType, CliInitOptions, CollectionBundleManifest, CollectionCompiler, CollectionCompilerMeta, CollectionCompilerVersion, CollectionComponentEntryPath, CollectionDependencyData, CollectionDependencyManifest, CollectionManifest, CompileScriptMinifyOptions, CompileTarget, Compiler, CompilerAssetDir, CompilerBuildResults, CompilerBuildStart, CompilerBuildStatBundle, CompilerBuildStatCollection, CompilerBuildStats, CompilerCtx, CompilerDependency, CompilerEventBuildFinish, CompilerEventBuildLog, CompilerEventBuildNoChange, CompilerEventBuildStart, CompilerEventDirAdd, CompilerEventDirDelete, CompilerEventFileAdd, CompilerEventFileDelete, CompilerEventFileUpdate, CompilerEventFsChange, CompilerEventName, CompilerFileWatcher, CompilerFileWatcherCallback, CompilerFileWatcherEvent, CompilerFsStats, CompilerJsDoc, CompilerJsDocTagInfo, CompilerModeStyles, CompilerRequest, CompilerRequestResponse, CompilerStyleDoc, CompilerSystem, CompilerSystemCreateDirectoryOptions, CompilerSystemCreateDirectoryResults, CompilerSystemRealpathResults, CompilerSystemRemoveDirectoryOptions, CompilerSystemRemoveDirectoryResults, CompilerSystemRemoveFileResults, CompilerSystemRenameResults, CompilerSystemRenamedPath, CompilerSystemWriteFileResults, CompilerWatcher, CompilerWorkerContext, CompilerWorkerTask, ComponentCompilerChangeHandler, ComponentCompilerCustomState, ComponentCompilerData, ComponentCompilerEvent, ComponentCompilerEventComplexType, ComponentCompilerFeatures, ComponentCompilerListener, ComponentCompilerMeta, ComponentCompilerMethod, ComponentCompilerMethodComplexType, ComponentCompilerProperty, ComponentCompilerPropertyComplexType, ComponentCompilerPropertyType, ComponentCompilerReferencedType, ComponentCompilerState, ComponentCompilerStaticEvent, ComponentCompilerStaticMethod, ComponentCompilerStaticProperty, ComponentCompilerTypeReference, ComponentCompilerTypeReferences, ComponentCompilerVirtualProperty, ComponentConstructor, ComponentConstructorChangeHandlers, ComponentConstructorEncapsulation, ComponentConstructorEvent, ComponentConstructorListener, ComponentConstructorProperties, ComponentConstructorProperty, ComponentConstructorPropertyType, ComponentNativeConstructor, ComponentPatches, ComponentRuntimeHostListener, ComponentRuntimeMember, ComponentRuntimeMembers, ComponentRuntimeMeta, ComponentRuntimeMetaCompact, ComponentRuntimeReflectingAttr, ComponentTestingConstructor, Config, ConfigBundle, ConfigExtras, CopyResults, CopyTask, Credentials, CssImportData, CssToEsmImportData, CssTransformCacheEntry, CustomElementsExportBehavior, CustomElementsExportBehaviorOptions, DevServer, DevServerConfig, DevServerEditor, Diagnostic, DocData, Encapsulation, EntryModule, EventInitDict, ExternalStyleCompiler, FsWatchResults, type FsWriteResults, HistoryApiFallback, HmrStyleUpdate, HostElement, HostRef, HotModuleReplacement, HydrateDocumentOptions, HydrateFactoryOptions, HydratedFlag, ImportData, JSDocTagInfo, JsDoc, JsonDocMethodParameter, JsonDocs, JsonDocsComponent, JsonDocsCustomState, JsonDocsDependencyGraph, JsonDocsEvent, JsonDocsListener, JsonDocsMethod, JsonDocsMethodReturn, JsonDocsPart, JsonDocsProp, JsonDocsSlot, JsonDocsStyle, JsonDocsTag, JsonDocsTypeLibrary, JsonDocsUsage, JsonDocsValue, LOG_LEVELS, LazyBundleRuntimeData, LazyBundlesRuntimeData, LazyRequire, LoadConfigInit, LoadConfigResults, LogLevel, Logger, LoggerLineUpdater, LoggerTimeSpan, Module, ModuleFormat, ModuleMap, MsgFromWorker, MsgToWorker, NewSpecPageOptions, NodeMap, NodeResolveConfig, OptimizeCssInput, OptimizeCssOutput, OptimizeJsInput, OptimizeJsOutput, OptimizeJsResult, OutputTarget, OutputTargetAssets, OutputTargetBase, OutputTargetBaseNext, OutputTargetBuild, OutputTargetCopy, OutputTargetCustom, OutputTargetDistLazy, OutputTargetDocsCustom, OutputTargetDocsCustomElementsManifest, OutputTargetDocsJson, OutputTargetDocsReadme, OutputTargetDocsVscode, OutputTargetGlobalStyle, OutputTargetLoaderBundle, OutputTargetSsr, OutputTargetStandalone, OutputTargetStats, OutputTargetStencilRebundle, OutputTargetTypes, OutputTargetWww, PackageJsonData, PageReloadStrategy, ParsedImport, ParsedPath, PatchedSlotNode, PlatformPath, PlatformRuntime, Plugin, PluginCtx, PluginTransformResults, PluginTransformationDescriptor, PrerenderConfig, PrerenderHydrateOptions, PrerenderManager, PrerenderOptions, PrerenderResults, PrerenderStartOptions, PrerenderUrlRequest, PrerenderUrlResults, PrintLine, PropsType, RenderNode, ResolveModuleIdOptions, ResolveModuleIdResults, ResolveModuleOptions, RobotsTxtOpts, RobotsTxtResults, RolldownAssetResult, RolldownChunkResult, RolldownConfig, RolldownInputOptions, RolldownInterface, RolldownOutputOptions, RolldownResult, RolldownResultModule, RolldownResults, RolldownSourceMap, RootAppliedStyleMap, RuntimeRef, SerializeDocumentOptions, SerializeImportData, SerializedEvent, ServiceWorkerConfig, SitemapXmpOpts, SitemapXmpResults, SourceMap, SourceTarget, SpecPage, SsrAnchorElement, SsrComponent, SsrDocumentOptions, SsrElement, SsrFactoryOptions, SsrImgElement, SsrResults, SsrScriptElement, SsrStaticData, SsrStyleElement, StencilConfig, StencilDevServerConfig, StencilDocsConfig, StencilDocument, StyleCompiler, StyleDoc, StyleMap, SystemDetails, TransformCssToEsmInput, TransformCssToEsmOutput, TransformOptions, TranspileModuleResults, TranspileOnlyResults, TranspileOptions, TranspileResults, TypeInfo, TypesImportData, TypesMemberNameData, TypesModule, UnvalidatedConfig, UpdatedLazyBuildCtx, VNodeProdData, ValidateTypesResults, ValidatedConfig, WatcherCloseResults, Workbox, WorkerContextMethod, WorkerMainController, WorkerMsgHandler, WorkerOptions, buildId, createCompiler, createPrerenderer, createSystem, createWorkerContext, createWorkerMessageHandler, loadConfig, nodeRequire, optimizeCss, optimizeJs, transpile, transpileSync, ts, validateConfig, vermoji, version, versions };
|
package/dist/compiler/index.mjs
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { a as createPrerenderer, b as version, c as createWorkerContext, d as nodeRequire, f as optimizeCss,
|
|
2
|
-
import { a as LOG_LEVELS, i as CustomElementsExportBehaviorOptions } from "../node-
|
|
1
|
+
import { a as createPrerenderer, b as version, c as createWorkerContext, d as nodeRequire, f as optimizeCss, i as createSystem, l as createWorkerMessageHandler, m as validateConfig, n as transpile, o as loadConfig, r as transpileSync, s as createCompiler, t as ts, u as optimizeJs, v as buildId, x as versions, y as vermoji } from "../compiler-Dxri2g8Z.mjs";
|
|
2
|
+
import { a as LOG_LEVELS, i as CustomElementsExportBehaviorOptions } from "../node-pj6rF4Wt.mjs";
|
|
3
3
|
export { CustomElementsExportBehaviorOptions, LOG_LEVELS, buildId, createCompiler, createPrerenderer, createSystem, createWorkerContext, createWorkerMessageHandler, loadConfig, nodeRequire, optimizeCss, optimizeJs, transpile, transpileSync, ts, validateConfig, vermoji, version, versions };
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { $a as
|
|
2
|
-
export { CMP_FLAGS, COLLECTION_MANIFEST_FILE_NAME, COPY, CUSTOM, DEFAULT_STYLE_MODE,
|
|
1
|
+
import { $a as getSourceMappingUrlLinker, $o as loadRolldownDiagnostics, $s as WATCH_FLAGS, Ao as isOutputTargetStandalone, As as DEFAULT_STYLE_MODE, Ba as getTextDocs, Bo as buildJsonFileError, Bs as HOST_FLAGS, Co as isOutputTargetDocsCustomElementsManifest, Cs as formatLazyBundleRuntimeMeta, Do as isOutputTargetGlobalStyle, Ds as COLLECTION_MANIFEST_FILE_NAME, Eo as isOutputTargetDocsVscode, Es as CMP_FLAGS, Fa as validateComponentTag, Fo as isValidConfigOutputTarget, Fs as DOCS_README, Ga as isTsFile, Go as shouldIgnoreError, Gs as NODE_TYPES, Ha as isDtsFile, Ho as catchError, Hs as LISTENER_FLAGS, Ia as ParsePackageJsonResult, Io as relativeImport, Is as DOCS_VSCODE, Ja as readOnlyArrayHasStringMember, Jo as splitLineBreaks, Js as STATS, Ka as isTsxFile, Ko as escapeHtml, Ks as SSR, La as addDocBlock, Lo as shouldExcludeComponent, Ls as EVENT_FLAGS, Mo as isOutputTargetStencilRebundle, Ms as DOCS_CUSTOM, No as isOutputTargetTypes, Ns as DOCS_CUSTOM_ELEMENTS_MANIFEST, Oo as isOutputTargetLoaderBundle, Os as COPY, Po as isOutputTargetWww, Ps as DOCS_JSON, Qa as getSourceMappingUrlForEndOfFile, Qo as createOnWarnFn, Qs as VALID_CONFIG_OUTPUT_TARGETS, Ra as createJsVarName, Ro as TASK_CANCELED_MSG, Rs as GENERATED_DTS, So as isOutputTargetDocsCustom, Ss as formatComponentRuntimeMeta, To as isOutputTargetDocsReadme, Ts as ASSETS, Ua as isJsFile, Uo as hasError, Us as LOADER_BUNDLE, Va as hasDependency, Vo as buildWarn, Vs as HTML_NS, Wa as isJsxFile, Wo as hasWarning, Ws as MEMBER_FLAGS, Xa as isRemoteUrl, Xo as loadTypeScriptDiagnostic, Xs as SVG_NS, Ya as readPackageJson, Yo as augmentDiagnosticWithNode, Ys as STENCIL_REBUNDLE, Za as getInlineSourceMappingUrlLinker, Zo as loadTypeScriptDiagnostics, Zs as TYPES, _o as isOutputTargetAssets, _s as sortBy, ao as normalize, as as fromEntries, bo as isOutputTargetDistLazy, bs as toTitleCase, co as normalizePath, cs as isDef, do as FilterComponentsResult, ds as isNumber, ec as WWW, eo as rolldownToStencilSourceMap, es as isRootPath, fo as filterActiveTargets, fs as isObject, go as getComponentsFromModules, gs as pluck, ho as getComponentsDtsTypesFilePath, hs as noop, io as join, is as flatOne, jo as isOutputTargetStats, js as DIST_LAZY, ko as isOutputTargetSsr, ks as CUSTOM, lo as relative, ls as isFunction, mo as getComponentsDtsSrcFilePath, ms as mergeIntoWith, nc as byteSize, no as escapeRegExpSpecialCharacters, ns as dashToPascalCase, oo as normalizeFsPath, os as isBoolean, po as filterExcludedComponents, ps as isString, qa as parsePackageJson, qo as normalizeDiagnostics, qs as STANDALONE, ro as queryNonceMetaTagContent, rs as escapeWithPattern, so as normalizeFsPathQuery, ss as isComplexType, tc as XLINK_NS, to as result_d_exports, ts as isGlob, uo as resolve, us as isIterable, vo as isOutputTargetCopy, vs as toCamelCase, wo as isOutputTargetDocsJson, ws as stringifyRuntimeData, xo as isOutputTargetDocs, xs as unique, yo as isOutputTargetCustom, ys as toDashCase, za as generatePreamble, zo as buildError, zs as GLOBAL_STYLE } from "../../index-D5zaocDq.mjs";
|
|
2
|
+
export { ASSETS, CMP_FLAGS, COLLECTION_MANIFEST_FILE_NAME, COPY, CUSTOM, DEFAULT_STYLE_MODE, DIST_LAZY, DOCS_CUSTOM, DOCS_CUSTOM_ELEMENTS_MANIFEST, DOCS_JSON, DOCS_README, DOCS_VSCODE, EVENT_FLAGS, FilterComponentsResult, GENERATED_DTS, GLOBAL_STYLE, HOST_FLAGS, HTML_NS, LISTENER_FLAGS, LOADER_BUNDLE, MEMBER_FLAGS, NODE_TYPES, ParsePackageJsonResult, SSR, STANDALONE, STATS, STENCIL_REBUNDLE, SVG_NS, TASK_CANCELED_MSG, TYPES, VALID_CONFIG_OUTPUT_TARGETS, WATCH_FLAGS, WWW, XLINK_NS, addDocBlock, augmentDiagnosticWithNode, buildError, buildJsonFileError, buildWarn, byteSize, catchError, createJsVarName, createOnWarnFn, dashToPascalCase, escapeHtml, escapeRegExpSpecialCharacters, escapeWithPattern, filterActiveTargets, filterExcludedComponents, flatOne, formatComponentRuntimeMeta, formatLazyBundleRuntimeMeta, fromEntries, generatePreamble, getComponentsDtsSrcFilePath, getComponentsDtsTypesFilePath, getComponentsFromModules, getInlineSourceMappingUrlLinker, getSourceMappingUrlForEndOfFile, getSourceMappingUrlLinker, getTextDocs, hasDependency, hasError, hasWarning, isBoolean, isComplexType, isDef, isDtsFile, isFunction, isGlob, isIterable, isJsFile, isJsxFile, isNumber, isObject, isOutputTargetAssets, isOutputTargetCopy, isOutputTargetCustom, isOutputTargetDistLazy, isOutputTargetDocs, isOutputTargetDocsCustom, isOutputTargetDocsCustomElementsManifest, isOutputTargetDocsJson, isOutputTargetDocsReadme, isOutputTargetDocsVscode, isOutputTargetGlobalStyle, isOutputTargetLoaderBundle, isOutputTargetSsr, isOutputTargetStandalone, isOutputTargetStats, isOutputTargetStencilRebundle, isOutputTargetTypes, isOutputTargetWww, isRemoteUrl, isRootPath, isString, isTsFile, isTsxFile, isValidConfigOutputTarget, join, loadRolldownDiagnostics, loadTypeScriptDiagnostic, loadTypeScriptDiagnostics, mergeIntoWith, noop, normalize, normalizeDiagnostics, normalizeFsPath, normalizeFsPathQuery, normalizePath, parsePackageJson, pluck, queryNonceMetaTagContent, readOnlyArrayHasStringMember, readPackageJson, relative, relativeImport, resolve, result_d_exports as result, rolldownToStencilSourceMap, shouldExcludeComponent, shouldIgnoreError, sortBy, splitLineBreaks, stringifyRuntimeData, toCamelCase, toDashCase, toTitleCase, unique, validateComponentTag };
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { $ as XLINK_NS, A as
|
|
2
|
-
import { $ as join, A as
|
|
3
|
-
export { CMP_FLAGS, COLLECTION_MANIFEST_FILE_NAME, COPY, CUSTOM, DEFAULT_STYLE_MODE,
|
|
1
|
+
import { $ as XLINK_NS, A as DOCS_CUSTOM, B as LISTENER_FLAGS, C as ASSETS, D as CUSTOM, E as COPY, F as EVENT_FLAGS, G as STANDALONE, H as MEMBER_FLAGS, I as GENERATED_DTS, J as SVG_NS, K as STATS, L as GLOBAL_STYLE, M as DOCS_JSON, N as DOCS_README, O as DEFAULT_STYLE_MODE, P as DOCS_VSCODE, Q as WWW, R as HOST_FLAGS, S as queryNonceMetaTagContent, T as COLLECTION_MANIFEST_FILE_NAME, U as NODE_TYPES, V as LOADER_BUNDLE, W as SSR, X as VALID_CONFIG_OUTPUT_TARGETS, Y as TYPES, Z as WATCH_FLAGS, _ as sortBy, a as fromEntries, b as toTitleCase, c as isDef, d as isNumber, f as isObject, g as pluck, h as noop, i as flatOne, j as DOCS_CUSTOM_ELEMENTS_MANIFEST, k as DIST_LAZY, l as isFunction, m as mergeIntoWith, n as dashToPascalCase, o as isBoolean, p as isString, q as STENCIL_REBUNDLE, r as escapeWithPattern, s as isComplexType, t as escapeRegExpSpecialCharacters, u as isIterable, v as toCamelCase, w as CMP_FLAGS, x as unique, y as toDashCase, z as HTML_NS } from "../../regular-expression-D0_N0PGa.mjs";
|
|
2
|
+
import { $ as join, A as isOutputTargetCopy, B as isOutputTargetLoaderBundle, C as result_exports, Ct as stringifyRuntimeData, D as getComponentsDtsTypesFilePath, E as getComponentsDtsSrcFilePath, F as isOutputTargetDocsCustomElementsManifest, G as isOutputTargetTypes, H as isOutputTargetStandalone, I as isOutputTargetDocsJson, J as relativeImport, K as isOutputTargetWww, L as isOutputTargetDocsReadme, M as isOutputTargetDistLazy, N as isOutputTargetDocs, O as getComponentsFromModules, P as isOutputTargetDocsCustom, Q as loadTypeScriptDiagnostics, R as isOutputTargetDocsVscode, St as formatLazyBundleRuntimeMeta, T as filterExcludedComponents, U as isOutputTargetStats, V as isOutputTargetSsr, W as isOutputTargetStencilRebundle, X as augmentDiagnosticWithNode, Y as shouldExcludeComponent, Z as loadTypeScriptDiagnostic, _ as getSourceMappingUrlForEndOfFile, _t as hasWarning, a as getTextDocs, at as resolve, bt as isGlob, c as isJsFile, ct as escapeHtml, d as isTsxFile, dt as TASK_CANCELED_MSG, et as normalize, f as parsePackageJson, ft as buildError, g as getInlineSourceMappingUrlLinker, gt as hasError, h as isRemoteUrl, ht as catchError, i as generatePreamble, it as relative, j as isOutputTargetCustom, k as isOutputTargetAssets, l as isJsxFile, lt as normalizeDiagnostics, m as readPackageJson, mt as buildWarn, n as addDocBlock, nt as normalizeFsPathQuery, o as hasDependency, ot as createOnWarnFn, p as readOnlyArrayHasStringMember, pt as buildJsonFileError, q as isValidConfigOutputTarget, r as createJsVarName, rt as normalizePath, s as isDtsFile, st as loadRolldownDiagnostics, t as validateComponentTag, tt as normalizeFsPath, u as isTsFile, ut as splitLineBreaks, v as getSourceMappingUrlLinker, vt as shouldIgnoreError, w as filterActiveTargets, wt as byteSize, xt as formatComponentRuntimeMeta, y as rolldownToStencilSourceMap, yt as isRootPath, z as isOutputTargetGlobalStyle } from "../../validation-BA8nzXu_.mjs";
|
|
3
|
+
export { ASSETS, CMP_FLAGS, COLLECTION_MANIFEST_FILE_NAME, COPY, CUSTOM, DEFAULT_STYLE_MODE, DIST_LAZY, DOCS_CUSTOM, DOCS_CUSTOM_ELEMENTS_MANIFEST, DOCS_JSON, DOCS_README, DOCS_VSCODE, EVENT_FLAGS, GENERATED_DTS, GLOBAL_STYLE, HOST_FLAGS, HTML_NS, LISTENER_FLAGS, LOADER_BUNDLE, MEMBER_FLAGS, NODE_TYPES, SSR, STANDALONE, STATS, STENCIL_REBUNDLE, SVG_NS, TASK_CANCELED_MSG, TYPES, VALID_CONFIG_OUTPUT_TARGETS, WATCH_FLAGS, WWW, XLINK_NS, addDocBlock, augmentDiagnosticWithNode, buildError, buildJsonFileError, buildWarn, byteSize, catchError, createJsVarName, createOnWarnFn, dashToPascalCase, escapeHtml, escapeRegExpSpecialCharacters, escapeWithPattern, filterActiveTargets, filterExcludedComponents, flatOne, formatComponentRuntimeMeta, formatLazyBundleRuntimeMeta, fromEntries, generatePreamble, getComponentsDtsSrcFilePath, getComponentsDtsTypesFilePath, getComponentsFromModules, getInlineSourceMappingUrlLinker, getSourceMappingUrlForEndOfFile, getSourceMappingUrlLinker, getTextDocs, hasDependency, hasError, hasWarning, isBoolean, isComplexType, isDef, isDtsFile, isFunction, isGlob, isIterable, isJsFile, isJsxFile, isNumber, isObject, isOutputTargetAssets, isOutputTargetCopy, isOutputTargetCustom, isOutputTargetDistLazy, isOutputTargetDocs, isOutputTargetDocsCustom, isOutputTargetDocsCustomElementsManifest, isOutputTargetDocsJson, isOutputTargetDocsReadme, isOutputTargetDocsVscode, isOutputTargetGlobalStyle, isOutputTargetLoaderBundle, isOutputTargetSsr, isOutputTargetStandalone, isOutputTargetStats, isOutputTargetStencilRebundle, isOutputTargetTypes, isOutputTargetWww, isRemoteUrl, isRootPath, isString, isTsFile, isTsxFile, isValidConfigOutputTarget, join, loadRolldownDiagnostics, loadTypeScriptDiagnostic, loadTypeScriptDiagnostics, mergeIntoWith, noop, normalize, normalizeDiagnostics, normalizeFsPath, normalizeFsPathQuery, normalizePath, parsePackageJson, pluck, queryNonceMetaTagContent, readOnlyArrayHasStringMember, readPackageJson, relative, relativeImport, resolve, result_exports as result, rolldownToStencilSourceMap, shouldExcludeComponent, shouldIgnoreError, sortBy, splitLineBreaks, stringifyRuntimeData, toCamelCase, toDashCase, toTitleCase, unique, validateComponentTag };
|