@stencil/core 5.0.0-alpha.1 → 5.0.0-alpha.10

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.
Files changed (50) hide show
  1. package/dist/app-data/index.d.ts +2 -0
  2. package/dist/{runtime/app-data → app-data}/index.js +17 -12
  3. package/dist/{client-B1nuvCd2.mjs → client-aTQ7xHxx.mjs} +2432 -2278
  4. package/dist/compiler/index.d.mts +6 -6
  5. package/dist/compiler/index.mjs +2 -2
  6. package/dist/compiler/utils/index.d.mts +2 -2
  7. package/dist/compiler/utils/index.mjs +3 -3
  8. package/dist/{compiler-LX4_RKKd.mjs → compiler-lTINDSgw.mjs} +14854 -13500
  9. package/dist/declarations/stencil-public-compiler.d.ts +4374 -2
  10. package/dist/declarations/stencil-public-compiler.js +2 -4
  11. package/dist/declarations/stencil-public-docs.d.ts +504 -1
  12. package/dist/declarations/stencil-public-runtime.d.ts +1982 -2
  13. package/dist/{index-fIuYTL9f.d.mts → index-BvkyxSY6.d.mts} +29 -2
  14. package/dist/{index-D-LlB2nw.d.mts → index-vY35H18z.d.mts} +795 -1188
  15. package/dist/{index-BONzXKJt.d.ts → index-xAkMgLX_.d.ts} +88 -39
  16. package/dist/index.d.mts +1 -1
  17. package/dist/index.mjs +2 -2
  18. package/dist/jsx-runtime.d.mts +18 -0
  19. package/dist/jsx-runtime.mjs +2 -0
  20. package/dist/{node-SxQIOCZE.mjs → node--akYC-sG.mjs} +20 -30
  21. package/dist/regular-expression-CFVJOTUh.mjs +508 -0
  22. package/dist/{runtime-CF9DJtSu.js → runtime/client/lazy.js} +2675 -2493
  23. package/dist/runtime/client/{index.d.ts → runtime.d.ts} +106 -78
  24. package/dist/runtime/client/{index.js → runtime.js} +2545 -2487
  25. package/dist/runtime/index.d.ts +58 -29
  26. package/dist/runtime/index.js +4795 -2
  27. package/dist/runtime/server/index.d.mts +103 -70
  28. package/dist/runtime/server/index.mjs +2545 -2350
  29. package/dist/runtime/server/runner.d.mts +44 -48
  30. package/dist/runtime/server/runner.mjs +347 -751
  31. package/dist/signals/index.d.ts +47 -0
  32. package/dist/signals/index.js +199 -0
  33. package/dist/sys/node/index.d.mts +1 -1
  34. package/dist/sys/node/index.mjs +1 -1
  35. package/dist/sys/node/worker.mjs +2 -2
  36. package/dist/testing/index.d.mts +97 -3
  37. package/dist/testing/index.mjs +367 -59
  38. package/dist/{validation-CaCgjw-f.mjs → validation-ByxKj8bC.mjs} +116 -99
  39. package/package.json +47 -38
  40. package/dist/index-CHjZtib0.d.ts +0 -30
  41. package/dist/jsx-runtime-DBzBJLKk.d.ts +0 -28
  42. package/dist/jsx-runtime.d.ts +0 -2
  43. package/dist/jsx-runtime.js +0 -2
  44. package/dist/runtime/app-data/index.d.ts +0 -2
  45. package/dist/serialize-BkYHk7Mi.mjs +0 -766
  46. package/dist/stencil-public-compiler-C_X1iolo.d.ts +0 -4455
  47. package/dist/stencil-public-runtime-DlV8o7-z.d.ts +0 -1845
  48. /package/dist/{runtime/app-globals → app-globals}/index.d.ts +0 -0
  49. /package/dist/{runtime/app-globals → app-globals}/index.js +0 -0
  50. /package/dist/{chunk-CjcI7cDX.mjs → chunk-z9aeyW2b.mjs} +0 -0
@@ -0,0 +1,508 @@
1
+ const MEMBER_FLAGS = {
2
+ String: 1,
3
+ Number: 2,
4
+ Boolean: 4,
5
+ Any: 8,
6
+ Unknown: 16,
7
+ State: 32,
8
+ Method: 64,
9
+ Event: 128,
10
+ Element: 256,
11
+ ReflectAttr: 512,
12
+ Mutable: 1024,
13
+ Getter: 2048,
14
+ Setter: 4096,
15
+ Prop: 31,
16
+ HasAttribute: 31,
17
+ PropLike: 63
18
+ };
19
+ const WATCH_FLAGS = { Immediate: 1 };
20
+ const EVENT_FLAGS = {
21
+ Cancellable: 1,
22
+ Composed: 2,
23
+ Bubbles: 4
24
+ };
25
+ const LISTENER_FLAGS = {
26
+ Passive: 1,
27
+ Capture: 2,
28
+ TargetDocument: 4,
29
+ TargetWindow: 8,
30
+ TargetBody: 16
31
+ };
32
+ const HOST_FLAGS = {
33
+ hasConnected: 1,
34
+ hasRendered: 2,
35
+ isWaitingForChildren: 4,
36
+ isConstructingInstance: 8,
37
+ isQueuedForUpdate: 16,
38
+ hasInitializedComponent: 32,
39
+ hasLoadedComponent: 64,
40
+ isWatchReady: 128,
41
+ isListenReady: 256,
42
+ needsRerender: 512,
43
+ devOnRender: 1024,
44
+ devOnDidLoad: 2048
45
+ };
46
+ const CF_scopedCssEncapsulation = 2;
47
+ /**
48
+ * A set of flags used for bitwise calculations against {@link ComponentRuntimeMeta#$flags$}.
49
+ *
50
+ * These flags should only be used in conjunction with {@link ComponentRuntimeMeta#$flags$}.
51
+ * They should _not_ be used for calculations against other fields/numbers
52
+ */
53
+ const CMP_FLAGS = {
54
+ /**
55
+ * Used to determine if a component is using the shadow DOM.
56
+ * e.g. `shadow: true | {}` is set on the `@Component()` decorator
57
+ */
58
+ shadowDomEncapsulation: 1,
59
+ /**
60
+ * Used to determine if a component is using scoped stylesheets
61
+ * e.g. `scoped: true` is set on the `@Component()` decorator
62
+ */
63
+ scopedCssEncapsulation: CF_scopedCssEncapsulation,
64
+ /**
65
+ * Used to determine if a component does not use the shadow DOM _and_ has `<slot/>` tags in its markup.
66
+ */
67
+ hasSlotRelocation: 4,
68
+ /**
69
+ * Determines if `delegatesFocus` is enabled for a component that uses the shadow DOM.
70
+ * e.g. `shadow: { delegatesFocus: true }` is set on the `@Component()` decorator
71
+ */
72
+ shadowDelegatesFocus: 16,
73
+ /**
74
+ * Determines if `mode` is set on the `@Component()` decorator
75
+ */
76
+ hasMode: 32,
77
+ /**
78
+ * Determines if styles must be scoped - i.e. the component uses scoped stylesheets.
79
+ */
80
+ needsScopedEncapsulation: CF_scopedCssEncapsulation,
81
+ /**
82
+ * Determines if a component is form-associated or not. This is set based on
83
+ * options passed to the `@Component` decorator.
84
+ */
85
+ formAssociated: 64,
86
+ /**
87
+ * Determines if a `shadow: true` component needs
88
+ * to have its styles scoped during SSR as opposed to using DSD.
89
+ */
90
+ shadowNeedsScopedCss: 128,
91
+ /**
92
+ * Determines if a component has a `<slot>` in its template.
93
+ */
94
+ hasSlot: 256,
95
+ /**
96
+ * Determines if a component uses modern class property declarations.
97
+ */
98
+ hasModernPropertyDecls: 512,
99
+ /**
100
+ * Determines if `slotAssignment` is set to `'manual'` for a component that uses the shadow DOM.
101
+ * e.g. `shadow: { slotAssignment: 'manual' }` is set on the `@Component()` decorator
102
+ */
103
+ shadowSlotAssignmentManual: 1024,
104
+ /**
105
+ * Determines if the shadow DOM mode is 'closed'.
106
+ * e.g. `encapsulation: { type: 'shadow', mode: 'closed' }` is set on the `@Component()` decorator
107
+ */
108
+ shadowModeClosed: 2048,
109
+ /**
110
+ * Determines if the component should patch child node accessors for slot handling.
111
+ * e.g. `encapsulation: { type: 'none', patches: ['children'] }`
112
+ */
113
+ patchChildren: 4096,
114
+ /**
115
+ * Determines if the component should patch cloneNode() for slot handling.
116
+ * e.g. `encapsulation: { type: 'none', patches: ['clone'] }`
117
+ */
118
+ patchClone: 8192,
119
+ /**
120
+ * Determines if the component should patch appendChild/insertBefore for slot handling.
121
+ * e.g. `encapsulation: { type: 'none', patches: ['insert'] }`
122
+ */
123
+ patchInsert: 16384,
124
+ /**
125
+ * Determines if the component should apply all slot patches.
126
+ * e.g. `encapsulation: { type: 'none', patches: ['all'] }`
127
+ * Equivalent to the global `experimentalSlotFixes` config option.
128
+ */
129
+ patchAll: 32768
130
+ };
131
+ /**
132
+ * Default style mode id
133
+ */
134
+ const DEFAULT_STYLE_MODE = "$";
135
+ /**
136
+ * Namespaces
137
+ */
138
+ const SVG_NS = "http://www.w3.org/2000/svg";
139
+ const HTML_NS = "http://www.w3.org/1999/xhtml";
140
+ const XLINK_NS = "http://www.w3.org/1999/xlink";
141
+ /**
142
+ * File names and value
143
+ */
144
+ const COLLECTION_MANIFEST_FILE_NAME = "collection-manifest.json";
145
+ const COLLECTION_APP_DATA_FILE_NAME = "app-data.js";
146
+ /**
147
+ * Constant for the 'copy' output target
148
+ */
149
+ const COPY = "copy";
150
+ /**
151
+ * Constant for the 'custom' output target
152
+ */
153
+ const CUSTOM = "custom";
154
+ /**
155
+ * Constant for the 'loader-bundle' output target
156
+ * (formerly 'dist' in v4)
157
+ */
158
+ const LOADER_BUNDLE = "loader-bundle";
159
+ /**
160
+ * Constant for the 'standalone' output target
161
+ * (formerly 'dist-custom-elements' in v4)
162
+ */
163
+ const STANDALONE = "standalone";
164
+ /**
165
+ * Constant for the 'ssr' output target
166
+ * (formerly 'dist-hydrate-script' in v4)
167
+ */
168
+ const SSR = "ssr";
169
+ /**
170
+ * Constant for the 'ssr-wasm' output target.
171
+ * Compiles the SSR script to a WASM binary via javy for use in any WASM-capable host
172
+ * (PHP, Java, Ruby, Go, etc.) without requiring a JavaScript runtime.
173
+ */
174
+ const SSR_WASM = "ssr-wasm";
175
+ /**
176
+ * Constant for the 'collection' output target
177
+ * (formerly 'dist-collection' sub-output in v4)
178
+ *
179
+ * Contains transpiled source + metadata for downstream Stencil projects
180
+ * to re-compile/bundle.
181
+ */
182
+ const COLLECTION = "collection";
183
+ /**
184
+ * Constant for the 'types' output target
185
+ * (formerly 'dist-types' sub-output in v4)
186
+ */
187
+ const TYPES = "types";
188
+ /**
189
+ * Constant for the 'global-style' output target
190
+ * Outputs global styles to a unified location available to all distributions.
191
+ */
192
+ const GLOBAL_STYLE = "global-style";
193
+ /**
194
+ * Constant for the 'assets' output target
195
+ * Copies component assetsDirs to a unified location available to all distributions.
196
+ */
197
+ const ASSETS = "assets";
198
+ /**
199
+ * Internal constant for the 'dist-lazy' output target
200
+ * (used by loader-bundle and www)
201
+ */
202
+ const DIST_LAZY = "dist-lazy";
203
+ /**
204
+ * Constant for the 'docs-custom' output target
205
+ */
206
+ const DOCS_CUSTOM = "docs-custom";
207
+ /**
208
+ * Constant for the 'docs-json' output target
209
+ */
210
+ const DOCS_JSON = "docs-json";
211
+ /**
212
+ * Constant for the 'docs-readme' output target
213
+ */
214
+ const DOCS_README = "docs-readme";
215
+ /**
216
+ * Constant for the 'docs-vscode' output target
217
+ */
218
+ const DOCS_VSCODE = "docs-vscode";
219
+ /**
220
+ * Constant for the 'docs-custom-elements-manifest' output target
221
+ */
222
+ const DOCS_CUSTOM_ELEMENTS_MANIFEST = "docs-custom-elements-manifest";
223
+ /**
224
+ * Constant for the 'stats' output target
225
+ */
226
+ const STATS = "stats";
227
+ /**
228
+ * Constant for the 'www' output target
229
+ */
230
+ const WWW = "www";
231
+ /**
232
+ * Valid output targets to specify in a Stencil config.
233
+ *
234
+ * Note that some internal output targets (e.g. `DIST_LAZY`, `DIST_GLOBAL_STYLES`)
235
+ * are programmatically created by the compiler and are not user-configurable.
236
+ *
237
+ * In v5, `TYPES` and `COLLECTION` are auto-generated in production builds unless explicitly configured.
238
+ */
239
+ const VALID_CONFIG_OUTPUT_TARGETS = [
240
+ "www",
241
+ LOADER_BUNDLE,
242
+ STANDALONE,
243
+ "ssr",
244
+ SSR_WASM,
245
+ COLLECTION,
246
+ TYPES,
247
+ GLOBAL_STYLE,
248
+ ASSETS,
249
+ "dist",
250
+ "dist-custom-elements",
251
+ "dist-hydrate-script",
252
+ "dist-collection",
253
+ "dist-types",
254
+ DOCS_JSON,
255
+ DOCS_README,
256
+ DOCS_VSCODE,
257
+ DOCS_CUSTOM,
258
+ DOCS_CUSTOM_ELEMENTS_MANIFEST,
259
+ COPY,
260
+ CUSTOM,
261
+ STATS
262
+ ];
263
+ const GENERATED_DTS = "components.d.ts";
264
+ const STYLE_EXT = [
265
+ "css",
266
+ "scss",
267
+ "sass",
268
+ "pcss",
269
+ "styl",
270
+ "stylus",
271
+ "less"
272
+ ];
273
+ /**
274
+ * DOM Node types
275
+ *
276
+ * See https://developer.mozilla.org/en-US/docs/Web/API/Node/nodeType
277
+ *
278
+ * Note: this is a duplicate of the `NODE_TYPES` enum in mock-doc, it's
279
+ * copied over here so that we do not need to introduce a dependency on the
280
+ * mock-doc bundle in the runtime. See
281
+ * https://github.com/stenciljs/core/pull/5705 for more details.
282
+ */
283
+ const NODE_TYPES = {
284
+ ELEMENT_NODE: 1,
285
+ ATTRIBUTE_NODE: 2,
286
+ TEXT_NODE: 3,
287
+ CDATA_SECTION_NODE: 4,
288
+ ENTITY_REFERENCE_NODE: 5,
289
+ ENTITY_NODE: 6,
290
+ PROCESSING_INSTRUCTION_NODE: 7,
291
+ COMMENT_NODE: 8,
292
+ DOCUMENT_NODE: 9,
293
+ DOCUMENT_TYPE_NODE: 10,
294
+ DOCUMENT_FRAGMENT_NODE: 11,
295
+ NOTATION_NODE: 12
296
+ };
297
+ //#endregion
298
+ //#region src/utils/query-nonce-meta-tag-content.ts
299
+ /**
300
+ * Helper method for querying a `meta` tag that contains a nonce value
301
+ * out of a DOM's head.
302
+ *
303
+ * @param doc The DOM containing the `head` to query against
304
+ * @returns The content of the meta tag representing the nonce value, or `undefined` if no tag
305
+ * exists or the tag has no content.
306
+ */
307
+ function queryNonceMetaTagContent(doc) {
308
+ return doc.head?.querySelector("meta[name=\"csp-nonce\"]")?.getAttribute("content") ?? void 0;
309
+ }
310
+ //#endregion
311
+ //#region src/utils/helpers.ts
312
+ /**
313
+ * Check if a value is defined (not null and not undefined).
314
+ *
315
+ * @param v - the value to check
316
+ * @returns true if the value is defined
317
+ */
318
+ const isDef = (v) => v != null && v !== void 0;
319
+ /**
320
+ * Convert a string from PascalCase to dash-case
321
+ *
322
+ * @param str the string to convert
323
+ * @returns a converted string
324
+ */
325
+ const toDashCase = (str) => str.replace(/([A-Z0-9])/g, (match) => ` ${match[0]}`).trim().split(" ").join("-").toLowerCase();
326
+ /**
327
+ * Convert a string from dash-case / kebab-case to PascalCase (or CamelCase,
328
+ * or whatever you call it!)
329
+ *
330
+ * @param str a string to convert
331
+ * @returns a converted string
332
+ */
333
+ const dashToPascalCase = (str) => str.toLowerCase().split("-").map((segment) => segment.charAt(0).toUpperCase() + segment.slice(1)).join("");
334
+ /**
335
+ * Convert a string to 'camelCase'
336
+ *
337
+ * @param str the string to convert
338
+ * @returns the converted string
339
+ */
340
+ const toCamelCase = (str) => {
341
+ const pascalCase = dashToPascalCase(str);
342
+ return pascalCase.charAt(0).toLowerCase() + pascalCase.slice(1);
343
+ };
344
+ /**
345
+ * Capitalize the first letter of a string
346
+ *
347
+ * @param str the string to capitalize
348
+ * @returns a capitalized string
349
+ */
350
+ const toTitleCase = (str) => str.charAt(0).toUpperCase() + str.slice(1);
351
+ /**
352
+ * Escapes all occurrences of a specified pattern in a string.
353
+ * This function replaces all matches of a given pattern in the input text with a specified replacement string.
354
+ * It can handle both string and regular expression patterns and allows toggling between global and single-match replacements.
355
+ *
356
+ * @param text - The input string to process.
357
+ * @param pattern - The pattern to search for in the input string. Can be a regular expression or a string.
358
+ * @param replacement - The string to replace each match with.
359
+ * @param replaceAll - Whether to replace all occurrences (true) or just the first occurrence (false). Defaults to true.
360
+ * @returns The processed string with the replacements applied.
361
+ */
362
+ const escapeWithPattern = (text, pattern, replacement, replaceAll = true) => {
363
+ let regex;
364
+ if (typeof pattern === "string") {
365
+ const escaped = pattern.replace(/[.*+?^${}()|[\]\\]/g, "\\$&");
366
+ regex = new RegExp(escaped, replaceAll ? "g" : "");
367
+ } else {
368
+ const flags = pattern.flags;
369
+ const hasG = flags.includes("g");
370
+ const newFlags = replaceAll ? hasG ? flags : flags + "g" : hasG ? flags.replace(/g/g, "") : flags;
371
+ regex = new RegExp(pattern.source, newFlags);
372
+ }
373
+ return text.replace(regex, replacement);
374
+ };
375
+ /**
376
+ * This is just a no-op, don't expect it to do anything.
377
+ */
378
+ const noop = () => {};
379
+ /**
380
+ * Check whether a value is a 'complex type', defined here as an object or a
381
+ * function.
382
+ *
383
+ * @param o the value to check
384
+ * @returns whether it's a complex type or not
385
+ */
386
+ const isComplexType = (o) => {
387
+ o = typeof o;
388
+ return o === "object" || o === "function";
389
+ };
390
+ /**
391
+ * Sort an array without mutating it in-place (as `Array.prototype.sort`
392
+ * unfortunately does)
393
+ *
394
+ * @param array the array you'd like to sort
395
+ * @param prop a function for deriving sortable values (strings or numbers)
396
+ * from array members
397
+ * @returns a new array of all items `x` in `array` ordered by `prop(x)`
398
+ */
399
+ const sortBy = (array, prop) => {
400
+ return array.slice().sort((a, b) => {
401
+ const nameA = prop(a);
402
+ const nameB = prop(b);
403
+ if (nameA < nameB) return -1;
404
+ if (nameA > nameB) return 1;
405
+ return 0;
406
+ });
407
+ };
408
+ /**
409
+ * A polyfill of sorts for `Array.prototype.flat` which will return the result
410
+ * of calling that method if present and, if not, return an equivalent based on
411
+ * `Array.prototype.reduce`.
412
+ *
413
+ * @param array the array to flatten (one level)
414
+ * @returns a flattened array
415
+ */
416
+ const flatOne = (array) => {
417
+ if (array.flat) return array.flat(1);
418
+ return array.reduce((result, item) => {
419
+ result.push(...item);
420
+ return result;
421
+ }, []);
422
+ };
423
+ /**
424
+ * Deduplicate an array, retaining items at the earliest position in which
425
+ * they appear.
426
+ *
427
+ * So `unique([1,3,2,1,1,4])` would be `[1,3,2,4]`.
428
+ *
429
+ * @param array the array to deduplicate
430
+ * @param predicate an optional function used to generate the key used to
431
+ * determine uniqueness
432
+ * @returns a new, deduplicated array
433
+ */
434
+ const unique = (array, predicate = (i) => i) => {
435
+ const set = /* @__PURE__ */ new Set();
436
+ return array.filter((item) => {
437
+ const key = predicate(item);
438
+ if (key == null) return true;
439
+ if (set.has(key)) return false;
440
+ set.add(key);
441
+ return true;
442
+ });
443
+ };
444
+ /**
445
+ * Merge elements of an array into an existing array, using a predicate to
446
+ * determine uniqueness and only adding elements when they are not present in
447
+ * the first array.
448
+ *
449
+ * **Note**: this mutates the target array! This is intentional to avoid
450
+ * unnecessary array allocation, but be sure that it's what you want!
451
+ *
452
+ * @param target the target array, to which new unique items should be added
453
+ * @param newItems a list of new items, some (or all!) of which may be added
454
+ * @param mergeWith a predicate function which reduces the items in `target`
455
+ * and `newItems` to a value which can be equated with `===` for the purposes
456
+ * of determining uniqueness
457
+ */
458
+ function mergeIntoWith(target, newItems, mergeWith) {
459
+ for (const item of newItems) if (!target.find((existingItem) => mergeWith(existingItem) === mergeWith(item))) target.push(item);
460
+ }
461
+ /**
462
+ * A utility for building an object from an iterable very similar to
463
+ * `Object.fromEntries`
464
+ *
465
+ * @param entries an iterable object holding entries (key-value tuples) to
466
+ * plop into a new object
467
+ * @returns an object containing those entries
468
+ */
469
+ const fromEntries = (entries) => {
470
+ const object = {};
471
+ for (const [key, value] of entries) object[key] = value;
472
+ return object;
473
+ };
474
+ /**
475
+ * Based on a given object, create a new object which has only the specified
476
+ * key-value pairs included in it.
477
+ *
478
+ * @param obj the object from which to take values
479
+ * @param keys a set of keys to take
480
+ * @returns an object mapping `key` to `obj[key]` if `obj[key]` is truthy for
481
+ * every `key` in `keys`
482
+ */
483
+ const pluck = (obj, keys) => {
484
+ return keys.reduce((final, key) => {
485
+ if (obj[key]) final[key] = obj[key];
486
+ return final;
487
+ }, {});
488
+ };
489
+ const isDefined = (v) => v !== null && v !== void 0;
490
+ const isBoolean = (v) => typeof v === "boolean";
491
+ const isFunction = (v) => typeof v === "function";
492
+ const isNumber = (v) => typeof v === "number";
493
+ const isObject = (val) => val != null && typeof val === "object" && Array.isArray(val) === false;
494
+ const isString = (v) => typeof v === "string";
495
+ const isIterable = (v) => isDefined(v) && isFunction(v[Symbol.iterator]);
496
+ //#endregion
497
+ //#region src/utils/regular-expression.ts
498
+ /**
499
+ * Utility function that will escape all regular expression special characters in a string.
500
+ *
501
+ * @param text The string potentially containing special characters.
502
+ * @returns The string with all special characters escaped.
503
+ */
504
+ const escapeRegExpSpecialCharacters = (text) => {
505
+ return text.replace(/[.*+?^${}()|[\]\\]/g, "\\$&");
506
+ };
507
+ //#endregion
508
+ export { VALID_CONFIG_OUTPUT_TARGETS as $, DEFAULT_STYLE_MODE as A, HOST_FLAGS as B, ASSETS as C, COLLECTION_MANIFEST_FILE_NAME as D, COLLECTION_APP_DATA_FILE_NAME as E, DOCS_README as F, NODE_TYPES as G, LISTENER_FLAGS as H, DOCS_VSCODE as I, STANDALONE as J, SSR as K, EVENT_FLAGS as L, DOCS_CUSTOM as M, DOCS_CUSTOM_ELEMENTS_MANIFEST as N, COPY as O, DOCS_JSON as P, TYPES as Q, GENERATED_DTS as R, queryNonceMetaTagContent as S, COLLECTION as T, LOADER_BUNDLE as U, HTML_NS as V, MEMBER_FLAGS as W, STYLE_EXT as X, STATS as Y, SVG_NS as Z, sortBy as _, fromEntries as a, toTitleCase as b, isDef as c, isNumber as d, WATCH_FLAGS as et, isObject as f, pluck as g, noop as h, flatOne as i, DIST_LAZY as j, CUSTOM as k, isFunction as l, mergeIntoWith as m, dashToPascalCase as n, XLINK_NS as nt, isBoolean as o, isString as p, SSR_WASM as q, escapeWithPattern as r, isComplexType as s, escapeRegExpSpecialCharacters as t, WWW as tt, isIterable as u, toCamelCase as v, CMP_FLAGS as w, unique as x, toDashCase as y, GLOBAL_STYLE as z };