@mekari/pixel3-utils 0.0.8-dev.0 → 0.1.0-dev.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/{chunk-3XRJD5HF.mjs → chunk-ZEFI2S67.mjs} +26 -0
- package/dist/composables/index.js +26 -0
- package/dist/composables/index.mjs +1 -1
- package/dist/composables/usePixelTheme.d.mts +4 -0
- package/dist/composables/usePixelTheme.d.ts +4 -0
- package/dist/composables/usePixelTheme.js +26 -0
- package/dist/composables/usePixelTheme.mjs +1 -1
- package/dist/index.js +26 -0
- package/dist/index.mjs +1 -1
- package/dist/metafile-cjs.json +1 -1
- package/dist/metafile-esm.json +1 -1
- package/package.json +1 -1
|
@@ -10,6 +10,7 @@ import { watch, ref, readonly } from "vue";
|
|
|
10
10
|
import { useStorage } from "@vueuse/core";
|
|
11
11
|
var isDark = useStorage("pixel-dark-mode", false);
|
|
12
12
|
var isNextTheme = useStorage("pixel-next-theme", false, canUseDOM ? sessionStorage : void 0);
|
|
13
|
+
var productTheme = useStorage("pixel-product-theme", "");
|
|
13
14
|
var watchersInstance = ref([]);
|
|
14
15
|
function usePixelTheme() {
|
|
15
16
|
function setDarkMode(value) {
|
|
@@ -20,6 +21,14 @@ function usePixelTheme() {
|
|
|
20
21
|
isNextTheme.value = value;
|
|
21
22
|
}
|
|
22
23
|
__name(setNextTheme, "setNextTheme");
|
|
24
|
+
function setProductTheme(product) {
|
|
25
|
+
productTheme.value = product;
|
|
26
|
+
}
|
|
27
|
+
__name(setProductTheme, "setProductTheme");
|
|
28
|
+
function getProductTheme() {
|
|
29
|
+
return productTheme.value;
|
|
30
|
+
}
|
|
31
|
+
__name(getProductTheme, "getProductTheme");
|
|
23
32
|
function getComputedCSSVariableValue(variable) {
|
|
24
33
|
if (!canUseDOM)
|
|
25
34
|
return;
|
|
@@ -60,6 +69,16 @@ function usePixelTheme() {
|
|
|
60
69
|
document.documentElement.removeAttribute("data-panda-theme");
|
|
61
70
|
}
|
|
62
71
|
__name(removeNextTheme, "removeNextTheme");
|
|
72
|
+
function applyProductTheme(product) {
|
|
73
|
+
if (!canUseDOM)
|
|
74
|
+
return;
|
|
75
|
+
if (product) {
|
|
76
|
+
document.documentElement.setAttribute("data-product-theme", product);
|
|
77
|
+
} else {
|
|
78
|
+
document.documentElement.removeAttribute("data-product-theme");
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
__name(applyProductTheme, "applyProductTheme");
|
|
63
82
|
watchersInstance.value = [
|
|
64
83
|
// Watch for theme changes
|
|
65
84
|
watch(() => isDark.value, (value) => {
|
|
@@ -79,6 +98,11 @@ function usePixelTheme() {
|
|
|
79
98
|
removeNextTheme();
|
|
80
99
|
}, {
|
|
81
100
|
immediate: true
|
|
101
|
+
}),
|
|
102
|
+
watch(() => productTheme.value, (value) => {
|
|
103
|
+
applyProductTheme(value);
|
|
104
|
+
}, {
|
|
105
|
+
immediate: true
|
|
82
106
|
})
|
|
83
107
|
];
|
|
84
108
|
return true;
|
|
@@ -98,6 +122,8 @@ function usePixelTheme() {
|
|
|
98
122
|
watchersInstance: readonly(watchersInstance),
|
|
99
123
|
setDarkMode,
|
|
100
124
|
setNextTheme,
|
|
125
|
+
setProductTheme,
|
|
126
|
+
getProductTheme,
|
|
101
127
|
getComputedCSSVariableValue,
|
|
102
128
|
activePixelThemeWatcher,
|
|
103
129
|
stopPixelThemeWatcher
|
|
@@ -35,6 +35,7 @@ var canUseDOM = !!(typeof window !== "undefined" && window.document && window.do
|
|
|
35
35
|
// src/composables/usePixelTheme.ts
|
|
36
36
|
var isDark = (0, import_core.useStorage)("pixel-dark-mode", false);
|
|
37
37
|
var isNextTheme = (0, import_core.useStorage)("pixel-next-theme", false, canUseDOM ? sessionStorage : void 0);
|
|
38
|
+
var productTheme = (0, import_core.useStorage)("pixel-product-theme", "");
|
|
38
39
|
var watchersInstance = (0, import_vue.ref)([]);
|
|
39
40
|
function usePixelTheme() {
|
|
40
41
|
function setDarkMode(value) {
|
|
@@ -45,6 +46,14 @@ function usePixelTheme() {
|
|
|
45
46
|
isNextTheme.value = value;
|
|
46
47
|
}
|
|
47
48
|
__name(setNextTheme, "setNextTheme");
|
|
49
|
+
function setProductTheme(product) {
|
|
50
|
+
productTheme.value = product;
|
|
51
|
+
}
|
|
52
|
+
__name(setProductTheme, "setProductTheme");
|
|
53
|
+
function getProductTheme() {
|
|
54
|
+
return productTheme.value;
|
|
55
|
+
}
|
|
56
|
+
__name(getProductTheme, "getProductTheme");
|
|
48
57
|
function getComputedCSSVariableValue(variable) {
|
|
49
58
|
if (!canUseDOM)
|
|
50
59
|
return;
|
|
@@ -85,6 +94,16 @@ function usePixelTheme() {
|
|
|
85
94
|
document.documentElement.removeAttribute("data-panda-theme");
|
|
86
95
|
}
|
|
87
96
|
__name(removeNextTheme, "removeNextTheme");
|
|
97
|
+
function applyProductTheme(product) {
|
|
98
|
+
if (!canUseDOM)
|
|
99
|
+
return;
|
|
100
|
+
if (product) {
|
|
101
|
+
document.documentElement.setAttribute("data-product-theme", product);
|
|
102
|
+
} else {
|
|
103
|
+
document.documentElement.removeAttribute("data-product-theme");
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
__name(applyProductTheme, "applyProductTheme");
|
|
88
107
|
watchersInstance.value = [
|
|
89
108
|
// Watch for theme changes
|
|
90
109
|
(0, import_vue.watch)(() => isDark.value, (value) => {
|
|
@@ -104,6 +123,11 @@ function usePixelTheme() {
|
|
|
104
123
|
removeNextTheme();
|
|
105
124
|
}, {
|
|
106
125
|
immediate: true
|
|
126
|
+
}),
|
|
127
|
+
(0, import_vue.watch)(() => productTheme.value, (value) => {
|
|
128
|
+
applyProductTheme(value);
|
|
129
|
+
}, {
|
|
130
|
+
immediate: true
|
|
107
131
|
})
|
|
108
132
|
];
|
|
109
133
|
return true;
|
|
@@ -123,6 +147,8 @@ function usePixelTheme() {
|
|
|
123
147
|
watchersInstance: (0, import_vue.readonly)(watchersInstance),
|
|
124
148
|
setDarkMode,
|
|
125
149
|
setNextTheme,
|
|
150
|
+
setProductTheme,
|
|
151
|
+
getProductTheme,
|
|
126
152
|
getComputedCSSVariableValue,
|
|
127
153
|
activePixelThemeWatcher,
|
|
128
154
|
stopPixelThemeWatcher
|
|
@@ -12,6 +12,8 @@ import * as _vueuse_core from '@vueuse/core';
|
|
|
12
12
|
* @property {Ref<WatchStopHandle[]>} watchersInstance - Ref to store watchers instance
|
|
13
13
|
* @property {(value: boolean) => void} setDarkMode - Function to toggle dark mode
|
|
14
14
|
* @property {(value: boolean) => void} setNextTheme - Function to toggle next theme.
|
|
15
|
+
* @property {(product: string) => void} setProductTheme - Function to set product theme
|
|
16
|
+
* @property {() => string} getProductTheme - Function to get current product theme
|
|
15
17
|
* @property {(variable: string) => string} getComputedCSSVariableValue - Function to get hex value when use semantic token
|
|
16
18
|
* @property {() => boolean} activePixelThemeWatcher - Function to activate theme watcher
|
|
17
19
|
* @property {() => boolean} stopPixelThemeWatcher - Function to stop theme watcher
|
|
@@ -22,6 +24,8 @@ declare function usePixelTheme(): {
|
|
|
22
24
|
watchersInstance: Readonly<vue.Ref<readonly WatchStopHandle[]>>;
|
|
23
25
|
setDarkMode: (value: boolean) => void;
|
|
24
26
|
setNextTheme: (value: boolean) => void;
|
|
27
|
+
setProductTheme: (product: string) => void;
|
|
28
|
+
getProductTheme: () => string;
|
|
25
29
|
getComputedCSSVariableValue: (variable: string) => string | undefined;
|
|
26
30
|
activePixelThemeWatcher: () => boolean;
|
|
27
31
|
stopPixelThemeWatcher: () => boolean;
|
|
@@ -12,6 +12,8 @@ import * as _vueuse_core from '@vueuse/core';
|
|
|
12
12
|
* @property {Ref<WatchStopHandle[]>} watchersInstance - Ref to store watchers instance
|
|
13
13
|
* @property {(value: boolean) => void} setDarkMode - Function to toggle dark mode
|
|
14
14
|
* @property {(value: boolean) => void} setNextTheme - Function to toggle next theme.
|
|
15
|
+
* @property {(product: string) => void} setProductTheme - Function to set product theme
|
|
16
|
+
* @property {() => string} getProductTheme - Function to get current product theme
|
|
15
17
|
* @property {(variable: string) => string} getComputedCSSVariableValue - Function to get hex value when use semantic token
|
|
16
18
|
* @property {() => boolean} activePixelThemeWatcher - Function to activate theme watcher
|
|
17
19
|
* @property {() => boolean} stopPixelThemeWatcher - Function to stop theme watcher
|
|
@@ -22,6 +24,8 @@ declare function usePixelTheme(): {
|
|
|
22
24
|
watchersInstance: Readonly<vue.Ref<readonly WatchStopHandle[]>>;
|
|
23
25
|
setDarkMode: (value: boolean) => void;
|
|
24
26
|
setNextTheme: (value: boolean) => void;
|
|
27
|
+
setProductTheme: (product: string) => void;
|
|
28
|
+
getProductTheme: () => string;
|
|
25
29
|
getComputedCSSVariableValue: (variable: string) => string | undefined;
|
|
26
30
|
activePixelThemeWatcher: () => boolean;
|
|
27
31
|
stopPixelThemeWatcher: () => boolean;
|
|
@@ -33,6 +33,7 @@ var canUseDOM = !!(typeof window !== "undefined" && window.document && window.do
|
|
|
33
33
|
// src/composables/usePixelTheme.ts
|
|
34
34
|
var isDark = (0, import_core.useStorage)("pixel-dark-mode", false);
|
|
35
35
|
var isNextTheme = (0, import_core.useStorage)("pixel-next-theme", false, canUseDOM ? sessionStorage : void 0);
|
|
36
|
+
var productTheme = (0, import_core.useStorage)("pixel-product-theme", "");
|
|
36
37
|
var watchersInstance = (0, import_vue.ref)([]);
|
|
37
38
|
function usePixelTheme() {
|
|
38
39
|
function setDarkMode(value) {
|
|
@@ -43,6 +44,14 @@ function usePixelTheme() {
|
|
|
43
44
|
isNextTheme.value = value;
|
|
44
45
|
}
|
|
45
46
|
__name(setNextTheme, "setNextTheme");
|
|
47
|
+
function setProductTheme(product) {
|
|
48
|
+
productTheme.value = product;
|
|
49
|
+
}
|
|
50
|
+
__name(setProductTheme, "setProductTheme");
|
|
51
|
+
function getProductTheme() {
|
|
52
|
+
return productTheme.value;
|
|
53
|
+
}
|
|
54
|
+
__name(getProductTheme, "getProductTheme");
|
|
46
55
|
function getComputedCSSVariableValue(variable) {
|
|
47
56
|
if (!canUseDOM)
|
|
48
57
|
return;
|
|
@@ -83,6 +92,16 @@ function usePixelTheme() {
|
|
|
83
92
|
document.documentElement.removeAttribute("data-panda-theme");
|
|
84
93
|
}
|
|
85
94
|
__name(removeNextTheme, "removeNextTheme");
|
|
95
|
+
function applyProductTheme(product) {
|
|
96
|
+
if (!canUseDOM)
|
|
97
|
+
return;
|
|
98
|
+
if (product) {
|
|
99
|
+
document.documentElement.setAttribute("data-product-theme", product);
|
|
100
|
+
} else {
|
|
101
|
+
document.documentElement.removeAttribute("data-product-theme");
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
__name(applyProductTheme, "applyProductTheme");
|
|
86
105
|
watchersInstance.value = [
|
|
87
106
|
// Watch for theme changes
|
|
88
107
|
(0, import_vue.watch)(() => isDark.value, (value) => {
|
|
@@ -102,6 +121,11 @@ function usePixelTheme() {
|
|
|
102
121
|
removeNextTheme();
|
|
103
122
|
}, {
|
|
104
123
|
immediate: true
|
|
124
|
+
}),
|
|
125
|
+
(0, import_vue.watch)(() => productTheme.value, (value) => {
|
|
126
|
+
applyProductTheme(value);
|
|
127
|
+
}, {
|
|
128
|
+
immediate: true
|
|
105
129
|
})
|
|
106
130
|
];
|
|
107
131
|
return true;
|
|
@@ -121,6 +145,8 @@ function usePixelTheme() {
|
|
|
121
145
|
watchersInstance: (0, import_vue.readonly)(watchersInstance),
|
|
122
146
|
setDarkMode,
|
|
123
147
|
setNextTheme,
|
|
148
|
+
setProductTheme,
|
|
149
|
+
getProductTheme,
|
|
124
150
|
getComputedCSSVariableValue,
|
|
125
151
|
activePixelThemeWatcher,
|
|
126
152
|
stopPixelThemeWatcher
|
package/dist/index.js
CHANGED
|
@@ -295,6 +295,7 @@ var import_vue5 = require("vue");
|
|
|
295
295
|
var import_core = require("@vueuse/core");
|
|
296
296
|
var isDark = (0, import_core.useStorage)("pixel-dark-mode", false);
|
|
297
297
|
var isNextTheme2 = (0, import_core.useStorage)("pixel-next-theme", false, canUseDOM ? sessionStorage : void 0);
|
|
298
|
+
var productTheme = (0, import_core.useStorage)("pixel-product-theme", "");
|
|
298
299
|
var watchersInstance = (0, import_vue5.ref)([]);
|
|
299
300
|
function usePixelTheme() {
|
|
300
301
|
function setDarkMode(value) {
|
|
@@ -305,6 +306,14 @@ function usePixelTheme() {
|
|
|
305
306
|
isNextTheme2.value = value;
|
|
306
307
|
}
|
|
307
308
|
__name(setNextTheme, "setNextTheme");
|
|
309
|
+
function setProductTheme(product) {
|
|
310
|
+
productTheme.value = product;
|
|
311
|
+
}
|
|
312
|
+
__name(setProductTheme, "setProductTheme");
|
|
313
|
+
function getProductTheme() {
|
|
314
|
+
return productTheme.value;
|
|
315
|
+
}
|
|
316
|
+
__name(getProductTheme, "getProductTheme");
|
|
308
317
|
function getComputedCSSVariableValue(variable) {
|
|
309
318
|
if (!canUseDOM)
|
|
310
319
|
return;
|
|
@@ -345,6 +354,16 @@ function usePixelTheme() {
|
|
|
345
354
|
document.documentElement.removeAttribute("data-panda-theme");
|
|
346
355
|
}
|
|
347
356
|
__name(removeNextTheme, "removeNextTheme");
|
|
357
|
+
function applyProductTheme(product) {
|
|
358
|
+
if (!canUseDOM)
|
|
359
|
+
return;
|
|
360
|
+
if (product) {
|
|
361
|
+
document.documentElement.setAttribute("data-product-theme", product);
|
|
362
|
+
} else {
|
|
363
|
+
document.documentElement.removeAttribute("data-product-theme");
|
|
364
|
+
}
|
|
365
|
+
}
|
|
366
|
+
__name(applyProductTheme, "applyProductTheme");
|
|
348
367
|
watchersInstance.value = [
|
|
349
368
|
// Watch for theme changes
|
|
350
369
|
(0, import_vue5.watch)(() => isDark.value, (value) => {
|
|
@@ -364,6 +383,11 @@ function usePixelTheme() {
|
|
|
364
383
|
removeNextTheme();
|
|
365
384
|
}, {
|
|
366
385
|
immediate: true
|
|
386
|
+
}),
|
|
387
|
+
(0, import_vue5.watch)(() => productTheme.value, (value) => {
|
|
388
|
+
applyProductTheme(value);
|
|
389
|
+
}, {
|
|
390
|
+
immediate: true
|
|
367
391
|
})
|
|
368
392
|
];
|
|
369
393
|
return true;
|
|
@@ -383,6 +407,8 @@ function usePixelTheme() {
|
|
|
383
407
|
watchersInstance: (0, import_vue5.readonly)(watchersInstance),
|
|
384
408
|
setDarkMode,
|
|
385
409
|
setNextTheme,
|
|
410
|
+
setProductTheme,
|
|
411
|
+
getProductTheme,
|
|
386
412
|
getComputedCSSVariableValue,
|
|
387
413
|
activePixelThemeWatcher,
|
|
388
414
|
stopPixelThemeWatcher
|
package/dist/index.mjs
CHANGED
package/dist/metafile-cjs.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"inputs":{"src/array.ts":{"bytes":479,"imports":[{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"src/context.ts":{"bytes":493,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"src/validators.ts":{"bytes":1787,"imports":[{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"src/dom.ts":{"bytes":2010,"imports":[{"path":"src/validators.ts","kind":"import-statement","original":"./validators"},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"src/generators.ts":{"bytes":778,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"src/performance.ts":{"bytes":2171,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"src/object.ts":{"bytes":918,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"./types","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"src/types.ts":{"bytes":1203,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"src/composables/usePixelTheme.ts":{"bytes":
|
|
1
|
+
{"inputs":{"src/array.ts":{"bytes":479,"imports":[{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"src/context.ts":{"bytes":493,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"src/validators.ts":{"bytes":1787,"imports":[{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"src/dom.ts":{"bytes":2010,"imports":[{"path":"src/validators.ts","kind":"import-statement","original":"./validators"},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"src/generators.ts":{"bytes":778,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"src/performance.ts":{"bytes":2171,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"src/object.ts":{"bytes":918,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"./types","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"src/types.ts":{"bytes":1203,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"src/composables/usePixelTheme.ts":{"bytes":5577,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"@vueuse/core","kind":"import-statement","external":true},{"path":"src/dom.ts","kind":"import-statement","original":"../dom"},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"src/composables/index.ts":{"bytes":117,"imports":[{"path":"src/composables/usePixelTheme.ts","kind":"import-statement","original":"./usePixelTheme"}],"format":"esm"},"src/index.ts":{"bytes":597,"imports":[{"path":"src/performance.ts","kind":"import-statement","original":"./performance"},{"path":"src/validators.ts","kind":"import-statement","original":"./validators"},{"path":"src/generators.ts","kind":"import-statement","original":"./generators"},{"path":"src/object.ts","kind":"import-statement","original":"./object"},{"path":"src/context.ts","kind":"import-statement","original":"./context"},{"path":"src/dom.ts","kind":"import-statement","original":"./dom"},{"path":"src/types.ts","kind":"import-statement","original":"./types"},{"path":"src/array.ts","kind":"import-statement","original":"./array"},{"path":"src/types.ts","kind":"import-statement","original":"./types"},{"path":"src/composables/index.ts","kind":"import-statement","original":"./composables"},{"path":"@vueuse/core","kind":"import-statement","external":true},{"path":"@vueuse/integrations/useFocusTrap","kind":"import-statement","external":true}],"format":"esm"}},"outputs":{"dist/array.js":{"imports":[],"exports":[],"entryPoint":"src/array.ts","inputs":{"src/array.ts":{"bytesInOutput":377}},"bytes":1384},"dist/context.js":{"imports":[{"path":"vue","kind":"require-call","external":true}],"exports":[],"entryPoint":"src/context.ts","inputs":{"src/context.ts":{"bytesInOutput":579}},"bytes":1602},"dist/dom.js":{"imports":[],"exports":[],"entryPoint":"src/dom.ts","inputs":{"src/dom.ts":{"bytesInOutput":1682},"src/validators.ts":{"bytesInOutput":110}},"bytes":2921},"dist/generators.js":{"imports":[{"path":"vue","kind":"require-call","external":true}],"exports":[],"entryPoint":"src/generators.ts","inputs":{"src/generators.ts":{"bytesInOutput":953}},"bytes":1993},"dist/index.js":{"imports":[{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"vue","kind":"require-call","external":true},{"path":"@vueuse/core","kind":"require-call","external":true},{"path":"@vueuse/core","kind":"require-call","external":true},{"path":"@vueuse/integrations/useFocusTrap","kind":"require-call","external":true}],"exports":[],"entryPoint":"src/index.ts","inputs":{"src/index.ts":{"bytesInOutput":1584},"src/performance.ts":{"bytesInOutput":1935},"src/validators.ts":{"bytesInOutput":1355},"src/generators.ts":{"bytesInOutput":752},"src/object.ts":{"bytesInOutput":851},"src/context.ts":{"bytesInOutput":423},"src/dom.ts":{"bytesInOutput":1369},"src/types.ts":{"bytesInOutput":99},"src/array.ts":{"bytesInOutput":252},"src/composables/usePixelTheme.ts":{"bytesInOutput":3894},"src/composables/index.ts":{"bytesInOutput":0}},"bytes":14270},"dist/object.js":{"imports":[{"path":"vue","kind":"require-call","external":true}],"exports":[],"entryPoint":"src/object.ts","inputs":{"src/object.ts":{"bytesInOutput":1103}},"bytes":2168},"dist/performance.js":{"imports":[{"path":"vue","kind":"require-call","external":true}],"exports":[],"entryPoint":"src/performance.ts","inputs":{"src/performance.ts":{"bytesInOutput":2108}},"bytes":3136},"dist/types.js":{"imports":[],"exports":[],"entryPoint":"src/types.ts","inputs":{"src/types.ts":{"bytesInOutput":242}},"bytes":1258},"dist/validators.js":{"imports":[],"exports":[],"entryPoint":"src/validators.ts","inputs":{"src/validators.ts":{"bytesInOutput":1633}},"bytes":2706},"dist/composables/index.js":{"imports":[{"path":"vue","kind":"require-call","external":true},{"path":"@vueuse/core","kind":"require-call","external":true}],"exports":[],"entryPoint":"src/composables/index.ts","inputs":{"src/composables/index.ts":{"bytesInOutput":155},"src/composables/usePixelTheme.ts":{"bytesInOutput":3871},"src/dom.ts":{"bytesInOutput":103}},"bytes":5243},"dist/composables/usePixelTheme.js":{"imports":[{"path":"vue","kind":"require-call","external":true},{"path":"@vueuse/core","kind":"require-call","external":true}],"exports":[],"entryPoint":"src/composables/usePixelTheme.ts","inputs":{"src/composables/usePixelTheme.ts":{"bytesInOutput":4032},"src/dom.ts":{"bytesInOutput":103}},"bytes":5220}}}
|
package/dist/metafile-esm.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"inputs":{"src/array.ts":{"bytes":479,"imports":[{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"src/context.ts":{"bytes":493,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"src/validators.ts":{"bytes":1787,"imports":[{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"src/dom.ts":{"bytes":2010,"imports":[{"path":"src/validators.ts","kind":"import-statement","original":"./validators"},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"src/generators.ts":{"bytes":778,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"src/performance.ts":{"bytes":2171,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"src/object.ts":{"bytes":918,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"./types","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"src/types.ts":{"bytes":1203,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"src/composables/usePixelTheme.ts":{"bytes":4632,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"@vueuse/core","kind":"import-statement","external":true},{"path":"src/dom.ts","kind":"import-statement","original":"../dom"},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"src/composables/index.ts":{"bytes":117,"imports":[{"path":"src/composables/usePixelTheme.ts","kind":"import-statement","original":"./usePixelTheme"}],"format":"esm"},"src/index.ts":{"bytes":597,"imports":[{"path":"src/performance.ts","kind":"import-statement","original":"./performance"},{"path":"src/validators.ts","kind":"import-statement","original":"./validators"},{"path":"src/generators.ts","kind":"import-statement","original":"./generators"},{"path":"src/object.ts","kind":"import-statement","original":"./object"},{"path":"src/context.ts","kind":"import-statement","original":"./context"},{"path":"src/dom.ts","kind":"import-statement","original":"./dom"},{"path":"src/types.ts","kind":"import-statement","original":"./types"},{"path":"src/array.ts","kind":"import-statement","original":"./array"},{"path":"src/types.ts","kind":"import-statement","original":"./types"},{"path":"src/composables/index.ts","kind":"import-statement","original":"./composables"},{"path":"@vueuse/core","kind":"import-statement","external":true},{"path":"@vueuse/integrations/useFocusTrap","kind":"import-statement","external":true}],"format":"esm"}},"outputs":{"dist/validators.mjs":{"imports":[{"path":"dist/chunk-XE4ZKGPH.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["isDef","isEqual","isPixelTagComponent","isUndef","isVueComponent"],"entryPoint":"src/validators.ts","inputs":{},"bytes":225},"dist/composables/index.mjs":{"imports":[{"path":"dist/chunk-34MJNZK5.mjs","kind":"import-statement"},{"path":"dist/chunk-3XRJD5HF.mjs","kind":"import-statement"},{"path":"dist/chunk-OVY52ELY.mjs","kind":"import-statement"},{"path":"dist/chunk-XE4ZKGPH.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["usePixelTheme"],"entryPoint":"src/composables/index.ts","inputs":{},"bytes":213},"dist/composables/usePixelTheme.mjs":{"imports":[{"path":"dist/chunk-3XRJD5HF.mjs","kind":"import-statement"},{"path":"dist/chunk-OVY52ELY.mjs","kind":"import-statement"},{"path":"dist/chunk-XE4ZKGPH.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["usePixelTheme"],"entryPoint":"src/composables/usePixelTheme.ts","inputs":{},"bytes":181},"dist/array.mjs":{"imports":[{"path":"dist/chunk-555RL46T.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["groupBy"],"entryPoint":"src/array.ts","inputs":{},"bytes":103},"dist/context.mjs":{"imports":[{"path":"dist/chunk-HXLTBFWE.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["usePixelCreateContext"],"entryPoint":"src/context.ts","inputs":{},"bytes":131},"dist/dom.mjs":{"imports":[{"path":"dist/chunk-OVY52ELY.mjs","kind":"import-statement"},{"path":"dist/chunk-XE4ZKGPH.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["canUseDOM","getElement","getNode","isElementVisible","isNextTheme","scrollToTargetElement"],"entryPoint":"src/dom.ts","inputs":{},"bytes":308},"dist/generators.mjs":{"imports":[{"path":"dist/chunk-TJIIVYQV.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["declareEmit","getUniqueId","useId"],"entryPoint":"src/generators.ts","inputs":{},"bytes":159},"dist/index.mjs":{"imports":[{"path":"dist/chunk-34MJNZK5.mjs","kind":"import-statement"},{"path":"dist/chunk-3XRJD5HF.mjs","kind":"import-statement"},{"path":"dist/chunk-555RL46T.mjs","kind":"import-statement"},{"path":"dist/chunk-HXLTBFWE.mjs","kind":"import-statement"},{"path":"dist/chunk-OVY52ELY.mjs","kind":"import-statement"},{"path":"dist/chunk-XE4ZKGPH.mjs","kind":"import-statement"},{"path":"dist/chunk-TJIIVYQV.mjs","kind":"import-statement"},{"path":"dist/chunk-PLTSXP5P.mjs","kind":"import-statement"},{"path":"dist/chunk-65WDFMBW.mjs","kind":"import-statement"},{"path":"dist/chunk-P3Q2WHZW.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"},{"path":"@vueuse/core","kind":"import-statement","external":true},{"path":"@vueuse/integrations/useFocusTrap","kind":"import-statement","external":true}],"exports":["canUseDOM","declareEmit","definePropsTable","getChildren","getElement","getNode","getUniqueId","groupBy","isDef","isElementVisible","isEqual","isNextTheme","isObject","isPixelTagComponent","isUndef","isVueComponent","objectFilter","objectFilterUndefined","onClickOutside","onKeyStroke","scrollToTargetElement","unrefElement","useFocusTrap","useId","useInfiniteScroll","useIntersectionObserver","usePerformanceObserver","usePixelCreateContext","usePixelTheme","useScrollLock","useStorage","useStyleTag","useVirtualList"],"entryPoint":"src/index.ts","inputs":{"src/index.ts":{"bytesInOutput":240}},"bytes":1610},"dist/chunk-34MJNZK5.mjs":{"imports":[],"exports":[],"inputs":{"src/composables/index.ts":{"bytesInOutput":0}},"bytes":0},"dist/chunk-3XRJD5HF.mjs":{"imports":[{"path":"dist/chunk-OVY52ELY.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"},{"path":"vue","kind":"import-statement","external":true},{"path":"@vueuse/core","kind":"import-statement","external":true}],"exports":["usePixelTheme"],"inputs":{"src/composables/usePixelTheme.ts":{"bytesInOutput":2955}},"bytes":3122},"dist/chunk-555RL46T.mjs":{"imports":[{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["groupBy"],"inputs":{"src/array.ts":{"bytesInOutput":252}},"bytes":341},"dist/chunk-HXLTBFWE.mjs":{"imports":[{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"},{"path":"vue","kind":"import-statement","external":true}],"exports":["usePixelCreateContext"],"inputs":{"src/context.ts":{"bytesInOutput":394}},"bytes":499},"dist/chunk-OVY52ELY.mjs":{"imports":[{"path":"dist/chunk-XE4ZKGPH.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["canUseDOM","getElement","getNode","isElementVisible","isNextTheme","scrollToTargetElement"],"inputs":{"src/dom.ts":{"bytesInOutput":1369}},"bytes":1600},"dist/chunk-XE4ZKGPH.mjs":{"imports":[{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["isDef","isEqual","isPixelTagComponent","isUndef","isVueComponent"],"inputs":{"src/validators.ts":{"bytesInOutput":1355}},"bytes":1510},"dist/chunk-TJIIVYQV.mjs":{"imports":[{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"},{"path":"vue","kind":"import-statement","external":true}],"exports":["declareEmit","getUniqueId","useId"],"inputs":{"src/generators.ts":{"bytesInOutput":721}},"bytes":843},"dist/object.mjs":{"imports":[{"path":"dist/chunk-PLTSXP5P.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["getChildren","isObject","objectFilter","objectFilterUndefined"],"entryPoint":"src/object.ts","inputs":{},"bytes":217},"dist/chunk-PLTSXP5P.mjs":{"imports":[{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"},{"path":"vue","kind":"import-statement","external":true}],"exports":["getChildren","isObject","objectFilter","objectFilterUndefined"],"inputs":{"src/object.ts":{"bytesInOutput":831}},"bytes":978},"dist/performance.mjs":{"imports":[{"path":"dist/chunk-65WDFMBW.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["usePerformanceObserver"],"entryPoint":"src/performance.ts","inputs":{},"bytes":133},"dist/chunk-65WDFMBW.mjs":{"imports":[{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"},{"path":"vue","kind":"import-statement","external":true}],"exports":["usePerformanceObserver"],"inputs":{"src/performance.ts":{"bytesInOutput":1880}},"bytes":1990},"dist/types.mjs":{"imports":[{"path":"dist/chunk-P3Q2WHZW.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["definePropsTable"],"entryPoint":"src/types.ts","inputs":{},"bytes":121},"dist/chunk-P3Q2WHZW.mjs":{"imports":[{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["definePropsTable"],"inputs":{"src/types.ts":{"bytesInOutput":99}},"bytes":197},"dist/chunk-QZ7VFGWC.mjs":{"imports":[],"exports":["__name"],"inputs":{},"bytes":151}}}
|
|
1
|
+
{"inputs":{"src/array.ts":{"bytes":479,"imports":[{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"src/context.ts":{"bytes":493,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"src/validators.ts":{"bytes":1787,"imports":[{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"src/dom.ts":{"bytes":2010,"imports":[{"path":"src/validators.ts","kind":"import-statement","original":"./validators"},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"src/generators.ts":{"bytes":778,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"src/performance.ts":{"bytes":2171,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"src/object.ts":{"bytes":918,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"./types","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"src/types.ts":{"bytes":1203,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"src/composables/usePixelTheme.ts":{"bytes":5577,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"@vueuse/core","kind":"import-statement","external":true},{"path":"src/dom.ts","kind":"import-statement","original":"../dom"},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"src/composables/index.ts":{"bytes":117,"imports":[{"path":"src/composables/usePixelTheme.ts","kind":"import-statement","original":"./usePixelTheme"}],"format":"esm"},"src/index.ts":{"bytes":597,"imports":[{"path":"src/performance.ts","kind":"import-statement","original":"./performance"},{"path":"src/validators.ts","kind":"import-statement","original":"./validators"},{"path":"src/generators.ts","kind":"import-statement","original":"./generators"},{"path":"src/object.ts","kind":"import-statement","original":"./object"},{"path":"src/context.ts","kind":"import-statement","original":"./context"},{"path":"src/dom.ts","kind":"import-statement","original":"./dom"},{"path":"src/types.ts","kind":"import-statement","original":"./types"},{"path":"src/array.ts","kind":"import-statement","original":"./array"},{"path":"src/types.ts","kind":"import-statement","original":"./types"},{"path":"src/composables/index.ts","kind":"import-statement","original":"./composables"},{"path":"@vueuse/core","kind":"import-statement","external":true},{"path":"@vueuse/integrations/useFocusTrap","kind":"import-statement","external":true}],"format":"esm"}},"outputs":{"dist/validators.mjs":{"imports":[{"path":"dist/chunk-XE4ZKGPH.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["isDef","isEqual","isPixelTagComponent","isUndef","isVueComponent"],"entryPoint":"src/validators.ts","inputs":{},"bytes":225},"dist/composables/index.mjs":{"imports":[{"path":"dist/chunk-34MJNZK5.mjs","kind":"import-statement"},{"path":"dist/chunk-ZEFI2S67.mjs","kind":"import-statement"},{"path":"dist/chunk-OVY52ELY.mjs","kind":"import-statement"},{"path":"dist/chunk-XE4ZKGPH.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["usePixelTheme"],"entryPoint":"src/composables/index.ts","inputs":{},"bytes":213},"dist/composables/usePixelTheme.mjs":{"imports":[{"path":"dist/chunk-ZEFI2S67.mjs","kind":"import-statement"},{"path":"dist/chunk-OVY52ELY.mjs","kind":"import-statement"},{"path":"dist/chunk-XE4ZKGPH.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["usePixelTheme"],"entryPoint":"src/composables/usePixelTheme.ts","inputs":{},"bytes":181},"dist/array.mjs":{"imports":[{"path":"dist/chunk-555RL46T.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["groupBy"],"entryPoint":"src/array.ts","inputs":{},"bytes":103},"dist/context.mjs":{"imports":[{"path":"dist/chunk-HXLTBFWE.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["usePixelCreateContext"],"entryPoint":"src/context.ts","inputs":{},"bytes":131},"dist/dom.mjs":{"imports":[{"path":"dist/chunk-OVY52ELY.mjs","kind":"import-statement"},{"path":"dist/chunk-XE4ZKGPH.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["canUseDOM","getElement","getNode","isElementVisible","isNextTheme","scrollToTargetElement"],"entryPoint":"src/dom.ts","inputs":{},"bytes":308},"dist/generators.mjs":{"imports":[{"path":"dist/chunk-TJIIVYQV.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["declareEmit","getUniqueId","useId"],"entryPoint":"src/generators.ts","inputs":{},"bytes":159},"dist/index.mjs":{"imports":[{"path":"dist/chunk-34MJNZK5.mjs","kind":"import-statement"},{"path":"dist/chunk-ZEFI2S67.mjs","kind":"import-statement"},{"path":"dist/chunk-555RL46T.mjs","kind":"import-statement"},{"path":"dist/chunk-HXLTBFWE.mjs","kind":"import-statement"},{"path":"dist/chunk-OVY52ELY.mjs","kind":"import-statement"},{"path":"dist/chunk-XE4ZKGPH.mjs","kind":"import-statement"},{"path":"dist/chunk-TJIIVYQV.mjs","kind":"import-statement"},{"path":"dist/chunk-PLTSXP5P.mjs","kind":"import-statement"},{"path":"dist/chunk-65WDFMBW.mjs","kind":"import-statement"},{"path":"dist/chunk-P3Q2WHZW.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"},{"path":"@vueuse/core","kind":"import-statement","external":true},{"path":"@vueuse/integrations/useFocusTrap","kind":"import-statement","external":true}],"exports":["canUseDOM","declareEmit","definePropsTable","getChildren","getElement","getNode","getUniqueId","groupBy","isDef","isElementVisible","isEqual","isNextTheme","isObject","isPixelTagComponent","isUndef","isVueComponent","objectFilter","objectFilterUndefined","onClickOutside","onKeyStroke","scrollToTargetElement","unrefElement","useFocusTrap","useId","useInfiniteScroll","useIntersectionObserver","usePerformanceObserver","usePixelCreateContext","usePixelTheme","useScrollLock","useStorage","useStyleTag","useVirtualList"],"entryPoint":"src/index.ts","inputs":{"src/index.ts":{"bytesInOutput":240}},"bytes":1610},"dist/chunk-34MJNZK5.mjs":{"imports":[],"exports":[],"inputs":{"src/composables/index.ts":{"bytesInOutput":0}},"bytes":0},"dist/chunk-ZEFI2S67.mjs":{"imports":[{"path":"dist/chunk-OVY52ELY.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"},{"path":"vue","kind":"import-statement","external":true},{"path":"@vueuse/core","kind":"import-statement","external":true}],"exports":["usePixelTheme"],"inputs":{"src/composables/usePixelTheme.ts":{"bytesInOutput":3751}},"bytes":3918},"dist/chunk-555RL46T.mjs":{"imports":[{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["groupBy"],"inputs":{"src/array.ts":{"bytesInOutput":252}},"bytes":341},"dist/chunk-HXLTBFWE.mjs":{"imports":[{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"},{"path":"vue","kind":"import-statement","external":true}],"exports":["usePixelCreateContext"],"inputs":{"src/context.ts":{"bytesInOutput":394}},"bytes":499},"dist/chunk-OVY52ELY.mjs":{"imports":[{"path":"dist/chunk-XE4ZKGPH.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["canUseDOM","getElement","getNode","isElementVisible","isNextTheme","scrollToTargetElement"],"inputs":{"src/dom.ts":{"bytesInOutput":1369}},"bytes":1600},"dist/chunk-XE4ZKGPH.mjs":{"imports":[{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["isDef","isEqual","isPixelTagComponent","isUndef","isVueComponent"],"inputs":{"src/validators.ts":{"bytesInOutput":1355}},"bytes":1510},"dist/chunk-TJIIVYQV.mjs":{"imports":[{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"},{"path":"vue","kind":"import-statement","external":true}],"exports":["declareEmit","getUniqueId","useId"],"inputs":{"src/generators.ts":{"bytesInOutput":721}},"bytes":843},"dist/object.mjs":{"imports":[{"path":"dist/chunk-PLTSXP5P.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["getChildren","isObject","objectFilter","objectFilterUndefined"],"entryPoint":"src/object.ts","inputs":{},"bytes":217},"dist/chunk-PLTSXP5P.mjs":{"imports":[{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"},{"path":"vue","kind":"import-statement","external":true}],"exports":["getChildren","isObject","objectFilter","objectFilterUndefined"],"inputs":{"src/object.ts":{"bytesInOutput":831}},"bytes":978},"dist/performance.mjs":{"imports":[{"path":"dist/chunk-65WDFMBW.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["usePerformanceObserver"],"entryPoint":"src/performance.ts","inputs":{},"bytes":133},"dist/chunk-65WDFMBW.mjs":{"imports":[{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"},{"path":"vue","kind":"import-statement","external":true}],"exports":["usePerformanceObserver"],"inputs":{"src/performance.ts":{"bytesInOutput":1880}},"bytes":1990},"dist/types.mjs":{"imports":[{"path":"dist/chunk-P3Q2WHZW.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["definePropsTable"],"entryPoint":"src/types.ts","inputs":{},"bytes":121},"dist/chunk-P3Q2WHZW.mjs":{"imports":[{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["definePropsTable"],"inputs":{"src/types.ts":{"bytesInOutput":99}},"bytes":197},"dist/chunk-QZ7VFGWC.mjs":{"imports":[],"exports":["__name"],"inputs":{},"bytes":151}}}
|