x-essential-lib 0.11.0 → 0.11.2

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.
@@ -1,719 +0,0 @@
1
- import { Fragment, computed, defineComponent, getCurrentInstance, getCurrentScope, hasInjectionContext, inject, isRef, onBeforeMount, onBeforeUnmount, onMounted, provide, ref, shallowRef, toValue, unref, watch, watchEffect } from "vue";
2
-
3
- //#region node_modules/.pnpm/@vueuse+shared@14.4.0_vue@3.5.43_typescript@6.0.3_/node_modules/@vueuse/shared/dist/index.js
4
- const localProvidedStateMap = /* @__PURE__ */ new WeakMap();
5
- /**
6
- * On the basis of `inject`, it is allowed to directly call inject to obtain the value after call provide in the same component.
7
- *
8
- * @example
9
- * ```ts
10
- * injectLocal('MyInjectionKey', 1)
11
- * const injectedValue = injectLocal('MyInjectionKey') // injectedValue === 1
12
- * ```
13
- *
14
- * @__NO_SIDE_EFFECTS__
15
- */
16
- const injectLocal = (...args) => {
17
- var _getCurrentInstance;
18
- const key = args[0];
19
- const instance = (_getCurrentInstance = getCurrentInstance()) === null || _getCurrentInstance === void 0 ? void 0 : _getCurrentInstance.proxy;
20
- const owner = instance !== null && instance !== void 0 ? instance : getCurrentScope();
21
- if (owner == null && !hasInjectionContext()) throw new Error("injectLocal must be called in setup");
22
- if (owner && localProvidedStateMap.has(owner) && key in localProvidedStateMap.get(owner)) return localProvidedStateMap.get(owner)[key];
23
- return inject(...args);
24
- };
25
- const isClient = typeof window !== "undefined" && typeof document !== "undefined";
26
- const isWorker = typeof WorkerGlobalScope !== "undefined" && globalThis instanceof WorkerGlobalScope;
27
- const toString$1 = Object.prototype.toString;
28
- const isObject = (val) => toString$1.call(val) === "[object Object]";
29
- /**
30
- * Get a px value for SSR use, do not rely on this method outside of SSR as REM unit is assumed at 16px, which might not be the case on the client
31
- */
32
- function pxValue(px) {
33
- return px.endsWith("rem") ? Number.parseFloat(px) * 16 : Number.parseFloat(px);
34
- }
35
- function toArray(value) {
36
- return Array.isArray(value) ? value : [value];
37
- }
38
- function cacheStringFunction(fn) {
39
- const cache = Object.create(null);
40
- return ((str) => {
41
- return cache[str] || (cache[str] = fn(str));
42
- });
43
- }
44
- const hyphenateRE = /\B([A-Z])/g;
45
- const hyphenate = cacheStringFunction((str) => str.replace(hyphenateRE, "-$1").toLowerCase());
46
- const camelizeRE = /-(\w)/g;
47
- const camelize = cacheStringFunction((str) => {
48
- return str.replace(camelizeRE, (_, c) => c ? c.toUpperCase() : "");
49
- });
50
- /**
51
- * Shorthand for watching value with {immediate: true}
52
- *
53
- * @see https://vueuse.org/watchImmediate
54
- */
55
- function watchImmediate(source, cb, options) {
56
- return watch(source, cb, {
57
- ...options,
58
- immediate: true
59
- });
60
- }
61
-
62
- //#endregion
63
- //#region node_modules/.pnpm/@vueuse+core@14.4.0_vue@3.5.43_typescript@6.0.3_/node_modules/@vueuse/core/dist/index.js
64
- const defaultWindow = isClient ? window : void 0;
65
- const defaultDocument = isClient ? window.document : void 0;
66
- const defaultNavigator = isClient ? window.navigator : void 0;
67
- const defaultLocation = isClient ? window.location : void 0;
68
- /**
69
- * Get the dom element of a ref of element or Vue component instance
70
- *
71
- * @param elRef
72
- */
73
- function unrefElement(elRef) {
74
- var _$el;
75
- const plain = toValue(elRef);
76
- return (_$el = plain === null || plain === void 0 ? void 0 : plain.$el) !== null && _$el !== void 0 ? _$el : plain;
77
- }
78
- function useEventListener(...args) {
79
- const register = (el, event, listener, options) => {
80
- el.addEventListener(event, listener, options);
81
- return () => el.removeEventListener(event, listener, options);
82
- };
83
- const firstParamTargets = computed(() => {
84
- const test = toArray(toValue(args[0])).filter((e) => e != null);
85
- return test.every((e) => typeof e !== "string") ? test : void 0;
86
- });
87
- return watchImmediate(() => {
88
- var _firstParamTargets$va, _firstParamTargets$va2;
89
- return [
90
- (_firstParamTargets$va = (_firstParamTargets$va2 = firstParamTargets.value) === null || _firstParamTargets$va2 === void 0 ? void 0 : _firstParamTargets$va2.map((e) => unrefElement(e))) !== null && _firstParamTargets$va !== void 0 ? _firstParamTargets$va : [defaultWindow].filter((e) => e != null),
91
- toArray(toValue(firstParamTargets.value ? args[1] : args[0])),
92
- toArray(unref(firstParamTargets.value ? args[2] : args[1])),
93
- toValue(firstParamTargets.value ? args[3] : args[2])
94
- ];
95
- }, ([raw_targets, raw_events, raw_listeners, raw_options], _, onCleanup) => {
96
- if (!(raw_targets === null || raw_targets === void 0 ? void 0 : raw_targets.length) || !(raw_events === null || raw_events === void 0 ? void 0 : raw_events.length) || !(raw_listeners === null || raw_listeners === void 0 ? void 0 : raw_listeners.length)) return;
97
- const optionsClone = isObject(raw_options) ? { ...raw_options } : raw_options;
98
- const cleanups = raw_targets.flatMap((el) => raw_events.flatMap((event) => raw_listeners.map((listener) => register(el, event, listener, optionsClone))));
99
- onCleanup(() => {
100
- cleanups.forEach((fn) => fn());
101
- });
102
- }, { flush: "post" });
103
- }
104
- /**
105
- * Mounted state in ref.
106
- *
107
- * @see https://vueuse.org/useMounted
108
- *
109
- * @__NO_SIDE_EFFECTS__
110
- */
111
- function useMounted() {
112
- const isMounted = shallowRef(false);
113
- const instance = getCurrentInstance();
114
- if (instance) onMounted(() => {
115
- isMounted.value = true;
116
- }, instance);
117
- return isMounted;
118
- }
119
- /* @__NO_SIDE_EFFECTS__ */
120
- function useSupported(callback) {
121
- const isMounted = useMounted();
122
- return computed(() => {
123
- isMounted.value;
124
- return Boolean(callback());
125
- });
126
- }
127
- const ssrWidthSymbol = Symbol("vueuse-ssr-width");
128
- /* @__NO_SIDE_EFFECTS__ */
129
- function useSSRWidth() {
130
- const ssrWidth = hasInjectionContext() ? injectLocal(ssrWidthSymbol, null) : null;
131
- return typeof ssrWidth === "number" ? ssrWidth : void 0;
132
- }
133
- /**
134
- * Reactive Media Query.
135
- *
136
- * @see https://vueuse.org/useMediaQuery
137
- * @param query
138
- * @param options
139
- */
140
- function useMediaQuery(query, options = {}) {
141
- const { window = defaultWindow, ssrWidth = /* @__PURE__ */ useSSRWidth() } = options;
142
- const isSupported = /* @__PURE__ */ useSupported(() => window && "matchMedia" in window && typeof window.matchMedia === "function");
143
- const ssrSupport = shallowRef(typeof ssrWidth === "number");
144
- const mediaQuery = shallowRef();
145
- const matches = shallowRef(false);
146
- const handler = (event) => {
147
- matches.value = event.matches;
148
- };
149
- watchEffect(() => {
150
- if (ssrSupport.value) {
151
- ssrSupport.value = !isSupported.value;
152
- const queryStrings = toValue(query).split(",");
153
- matches.value = queryStrings.some((queryString) => {
154
- const not = queryString.includes("not all");
155
- const minWidth = queryString.match(/\(\s*min-width:\s*(-?\d+(?:\.\d*)?[a-z]+\s*)\)/);
156
- const maxWidth = queryString.match(/\(\s*max-width:\s*(-?\d+(?:\.\d*)?[a-z]+\s*)\)/);
157
- let res = Boolean(minWidth || maxWidth);
158
- if (minWidth && res) res = ssrWidth >= pxValue(minWidth[1]);
159
- if (maxWidth && res) res = ssrWidth <= pxValue(maxWidth[1]);
160
- return not ? !res : res;
161
- });
162
- return;
163
- }
164
- if (!isSupported.value) return;
165
- mediaQuery.value = window.matchMedia(toValue(query));
166
- matches.value = mediaQuery.value.matches;
167
- });
168
- useEventListener(mediaQuery, "change", handler, { passive: true });
169
- return computed(() => matches.value);
170
- }
171
- /**
172
- * Reactive dark theme preference.
173
- *
174
- * @see https://vueuse.org/usePreferredDark
175
- * @param [options]
176
- *
177
- * @__NO_SIDE_EFFECTS__
178
- */
179
- function usePreferredDark(options) {
180
- return useMediaQuery("(prefers-color-scheme: dark)", options);
181
- }
182
-
183
- //#endregion
184
- //#region node_modules/.pnpm/mitt@3.0.1/node_modules/mitt/dist/mitt.mjs
185
- function mitt_default(n) {
186
- return {
187
- all: n = n || /* @__PURE__ */ new Map(),
188
- on: function(t, e) {
189
- var i = n.get(t);
190
- i ? i.push(e) : n.set(t, [e]);
191
- },
192
- off: function(t, e) {
193
- var i = n.get(t);
194
- i && (e ? i.splice(i.indexOf(e) >>> 0, 1) : n.set(t, []));
195
- },
196
- emit: function(t, e) {
197
- var i = n.get(t);
198
- i && i.slice().map(function(n) {
199
- n(e);
200
- }), (i = n.get("*")) && i.slice().map(function(n) {
201
- n(t, e);
202
- });
203
- }
204
- };
205
- }
206
-
207
- //#endregion
208
- //#region node_modules/.pnpm/js-cookie@3.0.8/node_modules/js-cookie/dist/js.cookie.mjs
209
- /*! js-cookie v3.0.8 | MIT */
210
- function assign(target) {
211
- for (var i = 1; i < arguments.length; i++) {
212
- var source = arguments[i];
213
- for (var key in source) {
214
- if (key === "__proto__") continue;
215
- target[key] = source[key];
216
- }
217
- }
218
- return target;
219
- }
220
- var defaultConverter = {
221
- read: function(value) {
222
- if (value[0] === "\"") value = value.slice(1, -1);
223
- return value.replace(/(%[\dA-F]{2})+/gi, decodeURIComponent);
224
- },
225
- write: function(value) {
226
- return encodeURIComponent(value).replace(/%(2[346BF]|3[AC-F]|40|5[BDE]|60|7[BCD])/g, decodeURIComponent);
227
- }
228
- };
229
- function init(converter, defaultAttributes) {
230
- function set(name, value, attributes) {
231
- if (typeof document === "undefined") return;
232
- attributes = assign({}, defaultAttributes, attributes);
233
- if (typeof attributes.expires === "number") attributes.expires = new Date(Date.now() + attributes.expires * 864e5);
234
- if (attributes.expires) attributes.expires = attributes.expires.toUTCString();
235
- name = encodeURIComponent(name).replace(/%(2[346B]|5E|60|7C)/g, decodeURIComponent).replace(/[()]/g, escape);
236
- var stringifiedAttributes = "";
237
- for (var attributeName in attributes) {
238
- if (!attributes[attributeName]) continue;
239
- stringifiedAttributes += "; " + attributeName;
240
- if (attributes[attributeName] === true) continue;
241
- stringifiedAttributes += "=" + attributes[attributeName].split(";")[0];
242
- }
243
- return document.cookie = name + "=" + converter.write(value, name) + stringifiedAttributes;
244
- }
245
- function get(name) {
246
- if (typeof document === "undefined" || arguments.length && !name) return;
247
- var cookies = document.cookie ? document.cookie.split("; ") : [];
248
- var jar = {};
249
- for (var i = 0; i < cookies.length; i++) {
250
- var parts = cookies[i].split("=");
251
- var value = parts.slice(1).join("=");
252
- try {
253
- var found = decodeURIComponent(parts[0]);
254
- if (!(found in jar)) jar[found] = converter.read(value, found);
255
- if (name === found) break;
256
- } catch (_e) {}
257
- }
258
- return name ? jar[name] : jar;
259
- }
260
- return Object.create({
261
- set,
262
- get,
263
- remove: function(name, attributes) {
264
- set(name, "", assign({}, attributes, { expires: -1 }));
265
- },
266
- withAttributes: function(attributes) {
267
- return init(this.converter, assign({}, this.attributes, attributes));
268
- },
269
- withConverter: function(converter) {
270
- return init(assign({}, this.converter, converter), this.attributes);
271
- }
272
- }, {
273
- attributes: { value: Object.freeze(defaultAttributes) },
274
- converter: { value: Object.freeze(converter) }
275
- });
276
- }
277
- var api = init(defaultConverter, { path: "/" });
278
-
279
- //#endregion
280
- //#region node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_freeGlobal.js
281
- /** Detect free variable `global` from Node.js. */
282
- var freeGlobal = typeof global == "object" && global && global.Object === Object && global;
283
-
284
- //#endregion
285
- //#region node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_root.js
286
- /** Detect free variable `self`. */
287
- var freeSelf = typeof self == "object" && self && self.Object === Object && self;
288
- /** Used as a reference to the global object. */
289
- var root = freeGlobal || freeSelf || Function("return this")();
290
-
291
- //#endregion
292
- //#region node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_Symbol.js
293
- /** Built-in value references. */
294
- var Symbol$1 = root.Symbol;
295
-
296
- //#endregion
297
- //#region node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_getRawTag.js
298
- /** Used for built-in method references. */
299
- var objectProto = Object.prototype;
300
- /** Used to check objects for own properties. */
301
- var hasOwnProperty = objectProto.hasOwnProperty;
302
- /**
303
- * Used to resolve the
304
- * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring)
305
- * of values.
306
- */
307
- var nativeObjectToString$1 = objectProto.toString;
308
- /** Built-in value references. */
309
- var symToStringTag$1 = Symbol$1 ? Symbol$1.toStringTag : void 0;
310
- /**
311
- * A specialized version of `baseGetTag` which ignores `Symbol.toStringTag` values.
312
- *
313
- * @private
314
- * @param {*} value The value to query.
315
- * @returns {string} Returns the raw `toStringTag`.
316
- */
317
- function getRawTag(value) {
318
- var isOwn = hasOwnProperty.call(value, symToStringTag$1), tag = value[symToStringTag$1];
319
- try {
320
- value[symToStringTag$1] = void 0;
321
- var unmasked = true;
322
- } catch (e) {}
323
- var result = nativeObjectToString$1.call(value);
324
- if (unmasked) {
325
- if (isOwn) value[symToStringTag$1] = tag;
326
- else delete value[symToStringTag$1];
327
- }
328
- return result;
329
- }
330
-
331
- //#endregion
332
- //#region node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_objectToString.js
333
- /**
334
- * Used to resolve the
335
- * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring)
336
- * of values.
337
- */
338
- var nativeObjectToString = Object.prototype.toString;
339
- /**
340
- * Converts `value` to a string using `Object.prototype.toString`.
341
- *
342
- * @private
343
- * @param {*} value The value to convert.
344
- * @returns {string} Returns the converted string.
345
- */
346
- function objectToString(value) {
347
- return nativeObjectToString.call(value);
348
- }
349
-
350
- //#endregion
351
- //#region node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_baseGetTag.js
352
- /** `Object#toString` result references. */
353
- var nullTag = "[object Null]";
354
- var undefinedTag = "[object Undefined]";
355
- /** Built-in value references. */
356
- var symToStringTag = Symbol$1 ? Symbol$1.toStringTag : void 0;
357
- /**
358
- * The base implementation of `getTag` without fallbacks for buggy environments.
359
- *
360
- * @private
361
- * @param {*} value The value to query.
362
- * @returns {string} Returns the `toStringTag`.
363
- */
364
- function baseGetTag(value) {
365
- if (value == null) return value === void 0 ? undefinedTag : nullTag;
366
- return symToStringTag && symToStringTag in Object(value) ? getRawTag(value) : objectToString(value);
367
- }
368
-
369
- //#endregion
370
- //#region node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/isObjectLike.js
371
- /**
372
- * Checks if `value` is object-like. A value is object-like if it's not `null`
373
- * and has a `typeof` result of "object".
374
- *
375
- * @static
376
- * @memberOf _
377
- * @since 4.0.0
378
- * @category Lang
379
- * @param {*} value The value to check.
380
- * @returns {boolean} Returns `true` if `value` is object-like, else `false`.
381
- * @example
382
- *
383
- * _.isObjectLike({});
384
- * // => true
385
- *
386
- * _.isObjectLike([1, 2, 3]);
387
- * // => true
388
- *
389
- * _.isObjectLike(_.noop);
390
- * // => false
391
- *
392
- * _.isObjectLike(null);
393
- * // => false
394
- */
395
- function isObjectLike(value) {
396
- return value != null && typeof value == "object";
397
- }
398
-
399
- //#endregion
400
- //#region node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/isSymbol.js
401
- /** `Object#toString` result references. */
402
- var symbolTag = "[object Symbol]";
403
- /**
404
- * Checks if `value` is classified as a `Symbol` primitive or object.
405
- *
406
- * @static
407
- * @memberOf _
408
- * @since 4.0.0
409
- * @category Lang
410
- * @param {*} value The value to check.
411
- * @returns {boolean} Returns `true` if `value` is a symbol, else `false`.
412
- * @example
413
- *
414
- * _.isSymbol(Symbol.iterator);
415
- * // => true
416
- *
417
- * _.isSymbol('abc');
418
- * // => false
419
- */
420
- function isSymbol(value) {
421
- return typeof value == "symbol" || isObjectLike(value) && baseGetTag(value) == symbolTag;
422
- }
423
-
424
- //#endregion
425
- //#region node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_arrayMap.js
426
- /**
427
- * A specialized version of `_.map` for arrays without support for iteratee
428
- * shorthands.
429
- *
430
- * @private
431
- * @param {Array} [array] The array to iterate over.
432
- * @param {Function} iteratee The function invoked per iteration.
433
- * @returns {Array} Returns the new mapped array.
434
- */
435
- function arrayMap(array, iteratee) {
436
- var index = -1, length = array == null ? 0 : array.length, result = Array(length);
437
- while (++index < length) result[index] = iteratee(array[index], index, array);
438
- return result;
439
- }
440
-
441
- //#endregion
442
- //#region node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/isArray.js
443
- /**
444
- * Checks if `value` is classified as an `Array` object.
445
- *
446
- * @static
447
- * @memberOf _
448
- * @since 0.1.0
449
- * @category Lang
450
- * @param {*} value The value to check.
451
- * @returns {boolean} Returns `true` if `value` is an array, else `false`.
452
- * @example
453
- *
454
- * _.isArray([1, 2, 3]);
455
- * // => true
456
- *
457
- * _.isArray(document.body.children);
458
- * // => false
459
- *
460
- * _.isArray('abc');
461
- * // => false
462
- *
463
- * _.isArray(_.noop);
464
- * // => false
465
- */
466
- var isArray = Array.isArray;
467
-
468
- //#endregion
469
- //#region node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_baseToString.js
470
- /** Used as references for various `Number` constants. */
471
- var INFINITY = 1 / 0;
472
- /** Used to convert symbols to primitives and strings. */
473
- var symbolProto = Symbol$1 ? Symbol$1.prototype : void 0;
474
- var symbolToString = symbolProto ? symbolProto.toString : void 0;
475
- /**
476
- * The base implementation of `_.toString` which doesn't convert nullish
477
- * values to empty strings.
478
- *
479
- * @private
480
- * @param {*} value The value to process.
481
- * @returns {string} Returns the string.
482
- */
483
- function baseToString(value) {
484
- if (typeof value == "string") return value;
485
- if (isArray(value)) return arrayMap(value, baseToString) + "";
486
- if (isSymbol(value)) return symbolToString ? symbolToString.call(value) : "";
487
- var result = value + "";
488
- return result == "0" && 1 / value == -INFINITY ? "-0" : result;
489
- }
490
-
491
- //#endregion
492
- //#region node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/toString.js
493
- /**
494
- * Converts `value` to a string. An empty string is returned for `null`
495
- * and `undefined` values. The sign of `-0` is preserved.
496
- *
497
- * @static
498
- * @memberOf _
499
- * @since 4.0.0
500
- * @category Lang
501
- * @param {*} value The value to convert.
502
- * @returns {string} Returns the converted string.
503
- * @example
504
- *
505
- * _.toString(null);
506
- * // => ''
507
- *
508
- * _.toString(-0);
509
- * // => '-0'
510
- *
511
- * _.toString([1, 2, 3]);
512
- * // => '1,2,3'
513
- */
514
- function toString(value) {
515
- return value == null ? "" : baseToString(value);
516
- }
517
-
518
- //#endregion
519
- //#region node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/toLower.js
520
- /**
521
- * Converts `string`, as a whole, to lower case just like
522
- * [String#toLowerCase](https://mdn.io/toLowerCase).
523
- *
524
- * @static
525
- * @memberOf _
526
- * @since 4.0.0
527
- * @category String
528
- * @param {string} [string=''] The string to convert.
529
- * @returns {string} Returns the lower cased string.
530
- * @example
531
- *
532
- * _.toLower('--Foo-Bar--');
533
- * // => '--foo-bar--'
534
- *
535
- * _.toLower('fooBar');
536
- * // => 'foobar'
537
- *
538
- * _.toLower('__FOO_BAR__');
539
- * // => '__foo_bar__'
540
- */
541
- function toLower(value) {
542
- return toString(value).toLowerCase();
543
- }
544
-
545
- //#endregion
546
- //#region node_modules/.pnpm/mitt@3.0.1/node_modules/mitt/index.d.ts
547
- var [EventType] = [
548
- 62,
549
- () => [],
550
- []
551
- ];
552
- var [Handler] = [
553
- 63,
554
- (T) => [T],
555
- [
556
- "",
557
- "",
558
- ""
559
- ]
560
- ];
561
- var [WildcardHandler] = [
562
- 64,
563
- (T) => [
564
- Record,
565
- T,
566
- T,
567
- T
568
- ],
569
- [
570
- "",
571
- "",
572
- "",
573
- "",
574
- "",
575
- "",
576
- ""
577
- ]
578
- ];
579
- var [EventHandlerList] = [
580
- 65,
581
- (T) => [
582
- T,
583
- Handler,
584
- Array
585
- ],
586
- [
587
- "",
588
- "",
589
- "",
590
- ""
591
- ]
592
- ];
593
- var [WildCardEventHandlerList] = [
594
- 66,
595
- (T) => [
596
- Record,
597
- T,
598
- WildcardHandler,
599
- Array
600
- ],
601
- [
602
- "",
603
- "",
604
- "",
605
- "",
606
- ""
607
- ]
608
- ];
609
- var [EventHandlerMap] = [
610
- 67,
611
- (Events) => [
612
- EventType,
613
- Record,
614
- Events,
615
- Events,
616
- Events,
617
- EventHandlerList,
618
- Events,
619
- WildCardEventHandlerList,
620
- Map
621
- ],
622
- [
623
- "",
624
- "",
625
- "",
626
- "",
627
- "",
628
- "",
629
- "",
630
- "",
631
- "",
632
- ""
633
- ]
634
- ];
635
- var [Emitter] = [
636
- 68,
637
- (Key, Events) => [
638
- EventType,
639
- Record,
640
- Events,
641
- EventHandlerMap,
642
- Events,
643
- Key,
644
- Events,
645
- Key,
646
- Handler,
647
- Events,
648
- WildcardHandler,
649
- Events,
650
- Key,
651
- Events,
652
- Key,
653
- Handler,
654
- Events,
655
- WildcardHandler,
656
- Events,
657
- Key,
658
- Events,
659
- Key,
660
- Events,
661
- Events,
662
- Key,
663
- Key
664
- ],
665
- [
666
- "",
667
- "",
668
- "",
669
- "",
670
- "",
671
- "",
672
- "",
673
- "",
674
- "",
675
- "",
676
- "",
677
- "",
678
- "",
679
- "",
680
- "",
681
- "",
682
- "",
683
- "",
684
- "",
685
- "",
686
- "",
687
- "",
688
- "",
689
- "",
690
- "",
691
- "",
692
- "",
693
- "",
694
- "",
695
- "",
696
- "",
697
- "",
698
- "",
699
- "",
700
- "",
701
- "",
702
- "",
703
- "",
704
- "",
705
- "",
706
- "",
707
- "",
708
- "",
709
- "",
710
- "",
711
- "",
712
- "",
713
- "",
714
- ""
715
- ]
716
- ];
717
-
718
- //#endregion
719
- export { mitt_default as a, api as i, EventType as n, usePreferredDark as o, toLower as r, Emitter as t };