@mekari/pixel3-utils 0.0.5-dev.0 → 0.0.5-dev.1
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-Y3ZCEXDG.mjs → chunk-OWHIB6RC.mjs} +1 -1
- package/dist/{chunk-RVQZSOON.mjs → chunk-XE4ZKGPH.mjs} +16 -1
- package/dist/dom.mjs +2 -2
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +16 -0
- package/dist/index.mjs +4 -2
- package/dist/metafile-cjs.json +1 -1
- package/dist/metafile-esm.json +1 -1
- package/dist/validators.d.mts +2 -1
- package/dist/validators.d.ts +2 -1
- package/dist/validators.js +16 -0
- package/dist/validators.mjs +3 -1
- package/package.json +1 -1
|
@@ -39,10 +39,25 @@ var isEqual = /* @__PURE__ */ __name((x, y) => {
|
|
|
39
39
|
}
|
|
40
40
|
return true;
|
|
41
41
|
}, "isEqual");
|
|
42
|
+
function isPixelTagComponent(componentName) {
|
|
43
|
+
if (!componentName)
|
|
44
|
+
return false;
|
|
45
|
+
const pixelFactories = ["Pixel", "Flex"];
|
|
46
|
+
let isPixelFactory = false;
|
|
47
|
+
pixelFactories.forEach((v) => {
|
|
48
|
+
if (componentName.includes(v)) {
|
|
49
|
+
isPixelFactory = true;
|
|
50
|
+
return;
|
|
51
|
+
}
|
|
52
|
+
});
|
|
53
|
+
return isPixelFactory;
|
|
54
|
+
}
|
|
55
|
+
__name(isPixelTagComponent, "isPixelTagComponent");
|
|
42
56
|
|
|
43
57
|
export {
|
|
44
58
|
isVueComponent,
|
|
45
59
|
isUndef,
|
|
46
60
|
isDef,
|
|
47
|
-
isEqual
|
|
61
|
+
isEqual,
|
|
62
|
+
isPixelTagComponent
|
|
48
63
|
};
|
package/dist/dom.mjs
CHANGED
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export { usePerformanceObserver } from './performance.mjs';
|
|
2
|
-
export { isDef, isEqual, isUndef, isVueComponent } from './validators.mjs';
|
|
2
|
+
export { isDef, isEqual, isPixelTagComponent, isUndef, isVueComponent } from './validators.mjs';
|
|
3
3
|
export { declareEmit, getUniqueId, useId } from './generators.mjs';
|
|
4
4
|
export { getChildren, isObject, objectFilter, objectFilterUndefined } from './object.mjs';
|
|
5
5
|
export { usePixelCreateContext } from './context.mjs';
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export { usePerformanceObserver } from './performance.js';
|
|
2
|
-
export { isDef, isEqual, isUndef, isVueComponent } from './validators.js';
|
|
2
|
+
export { isDef, isEqual, isPixelTagComponent, isUndef, isVueComponent } from './validators.js';
|
|
3
3
|
export { declareEmit, getUniqueId, useId } from './generators.js';
|
|
4
4
|
export { getChildren, isObject, objectFilter, objectFilterUndefined } from './object.js';
|
|
5
5
|
export { usePixelCreateContext } from './context.js';
|
package/dist/index.js
CHANGED
|
@@ -33,6 +33,7 @@ __export(src_exports, {
|
|
|
33
33
|
isElementVisible: () => isElementVisible,
|
|
34
34
|
isEqual: () => isEqual,
|
|
35
35
|
isObject: () => isObject,
|
|
36
|
+
isPixelTagComponent: () => isPixelTagComponent,
|
|
36
37
|
isUndef: () => isUndef,
|
|
37
38
|
isVueComponent: () => isVueComponent,
|
|
38
39
|
objectFilter: () => objectFilter,
|
|
@@ -155,6 +156,20 @@ var isEqual = /* @__PURE__ */ __name((x, y) => {
|
|
|
155
156
|
}
|
|
156
157
|
return true;
|
|
157
158
|
}, "isEqual");
|
|
159
|
+
function isPixelTagComponent(componentName) {
|
|
160
|
+
if (!componentName)
|
|
161
|
+
return false;
|
|
162
|
+
const pixelFactories = ["Pixel", "Flex"];
|
|
163
|
+
let isPixelFactory = false;
|
|
164
|
+
pixelFactories.forEach((v) => {
|
|
165
|
+
if (componentName.includes(v)) {
|
|
166
|
+
isPixelFactory = true;
|
|
167
|
+
return;
|
|
168
|
+
}
|
|
169
|
+
});
|
|
170
|
+
return isPixelFactory;
|
|
171
|
+
}
|
|
172
|
+
__name(isPixelTagComponent, "isPixelTagComponent");
|
|
158
173
|
|
|
159
174
|
// src/generators.ts
|
|
160
175
|
var import_vue2 = require("vue");
|
|
@@ -286,6 +301,7 @@ var import_useFocusTrap = require("@vueuse/integrations/useFocusTrap");
|
|
|
286
301
|
isElementVisible,
|
|
287
302
|
isEqual,
|
|
288
303
|
isObject,
|
|
304
|
+
isPixelTagComponent,
|
|
289
305
|
isUndef,
|
|
290
306
|
isVueComponent,
|
|
291
307
|
objectFilter,
|
package/dist/index.mjs
CHANGED
|
@@ -10,13 +10,14 @@ import {
|
|
|
10
10
|
getNode,
|
|
11
11
|
isElementVisible,
|
|
12
12
|
scrollToTargetElement
|
|
13
|
-
} from "./chunk-
|
|
13
|
+
} from "./chunk-OWHIB6RC.mjs";
|
|
14
14
|
import {
|
|
15
15
|
isDef,
|
|
16
16
|
isEqual,
|
|
17
|
+
isPixelTagComponent,
|
|
17
18
|
isUndef,
|
|
18
19
|
isVueComponent
|
|
19
|
-
} from "./chunk-
|
|
20
|
+
} from "./chunk-XE4ZKGPH.mjs";
|
|
20
21
|
import {
|
|
21
22
|
declareEmit,
|
|
22
23
|
getUniqueId,
|
|
@@ -52,6 +53,7 @@ export {
|
|
|
52
53
|
isElementVisible,
|
|
53
54
|
isEqual,
|
|
54
55
|
isObject,
|
|
56
|
+
isPixelTagComponent,
|
|
55
57
|
isUndef,
|
|
56
58
|
isVueComponent,
|
|
57
59
|
objectFilter,
|
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":
|
|
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":1850,"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":1152,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"src/index.ts":{"bytes":566,"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":"@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":1514},"src/validators.ts":{"bytesInOutput":110}},"bytes":2738},"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":"@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":1502},"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":1235},"src/types.ts":{"bytesInOutput":99},"src/array.ts":{"bytesInOutput":252}},"bytes":10091},"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}}}
|
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":
|
|
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":1850,"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":1152,"imports":[{"path":"vue","kind":"import-statement","external":true},{"path":"<runtime>","kind":"import-statement","external":true}],"format":"esm"},"src/index.ts":{"bytes":566,"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":"@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/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-OWHIB6RC.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","scrollToTargetElement"],"entryPoint":"src/dom.ts","inputs":{},"bytes":278},"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-555RL46T.mjs","kind":"import-statement"},{"path":"dist/chunk-HXLTBFWE.mjs","kind":"import-statement"},{"path":"dist/chunk-OWHIB6RC.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","isObject","isPixelTagComponent","isUndef","isVueComponent","objectFilter","objectFilterUndefined","onClickOutside","onKeyStroke","scrollToTargetElement","unrefElement","useFocusTrap","useId","useInfiniteScroll","useIntersectionObserver","usePerformanceObserver","usePixelCreateContext","useScrollLock","useStorage","useStyleTag","useVirtualList"],"entryPoint":"src/index.ts","inputs":{"src/index.ts":{"bytesInOutput":240}},"bytes":1476},"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-OWHIB6RC.mjs":{"imports":[{"path":"dist/chunk-XE4ZKGPH.mjs","kind":"import-statement"},{"path":"dist/chunk-QZ7VFGWC.mjs","kind":"import-statement"}],"exports":["canUseDOM","getElement","getNode","isElementVisible","scrollToTargetElement"],"inputs":{"src/dom.ts":{"bytesInOutput":1235}},"bytes":1451},"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}}}
|
package/dist/validators.d.mts
CHANGED
|
@@ -19,5 +19,6 @@ declare function isUndef(v: unknown): boolean;
|
|
|
19
19
|
*/
|
|
20
20
|
declare function isDef(v: unknown): boolean;
|
|
21
21
|
declare const isEqual: <TType>(x: TType, y: TType) => boolean;
|
|
22
|
+
declare function isPixelTagComponent(componentName: string): boolean;
|
|
22
23
|
|
|
23
|
-
export { isDef, isEqual, isUndef, isVueComponent };
|
|
24
|
+
export { isDef, isEqual, isPixelTagComponent, isUndef, isVueComponent };
|
package/dist/validators.d.ts
CHANGED
|
@@ -19,5 +19,6 @@ declare function isUndef(v: unknown): boolean;
|
|
|
19
19
|
*/
|
|
20
20
|
declare function isDef(v: unknown): boolean;
|
|
21
21
|
declare const isEqual: <TType>(x: TType, y: TType) => boolean;
|
|
22
|
+
declare function isPixelTagComponent(componentName: string): boolean;
|
|
22
23
|
|
|
23
|
-
export { isDef, isEqual, isUndef, isVueComponent };
|
|
24
|
+
export { isDef, isEqual, isPixelTagComponent, isUndef, isVueComponent };
|
package/dist/validators.js
CHANGED
|
@@ -23,6 +23,7 @@ var validators_exports = {};
|
|
|
23
23
|
__export(validators_exports, {
|
|
24
24
|
isDef: () => isDef,
|
|
25
25
|
isEqual: () => isEqual,
|
|
26
|
+
isPixelTagComponent: () => isPixelTagComponent,
|
|
26
27
|
isUndef: () => isUndef,
|
|
27
28
|
isVueComponent: () => isVueComponent
|
|
28
29
|
});
|
|
@@ -63,10 +64,25 @@ var isEqual = /* @__PURE__ */ __name((x, y) => {
|
|
|
63
64
|
}
|
|
64
65
|
return true;
|
|
65
66
|
}, "isEqual");
|
|
67
|
+
function isPixelTagComponent(componentName) {
|
|
68
|
+
if (!componentName)
|
|
69
|
+
return false;
|
|
70
|
+
const pixelFactories = ["Pixel", "Flex"];
|
|
71
|
+
let isPixelFactory = false;
|
|
72
|
+
pixelFactories.forEach((v) => {
|
|
73
|
+
if (componentName.includes(v)) {
|
|
74
|
+
isPixelFactory = true;
|
|
75
|
+
return;
|
|
76
|
+
}
|
|
77
|
+
});
|
|
78
|
+
return isPixelFactory;
|
|
79
|
+
}
|
|
80
|
+
__name(isPixelTagComponent, "isPixelTagComponent");
|
|
66
81
|
// Annotate the CommonJS export names for ESM import in node:
|
|
67
82
|
0 && (module.exports = {
|
|
68
83
|
isDef,
|
|
69
84
|
isEqual,
|
|
85
|
+
isPixelTagComponent,
|
|
70
86
|
isUndef,
|
|
71
87
|
isVueComponent
|
|
72
88
|
});
|
package/dist/validators.mjs
CHANGED
|
@@ -1,13 +1,15 @@
|
|
|
1
1
|
import {
|
|
2
2
|
isDef,
|
|
3
3
|
isEqual,
|
|
4
|
+
isPixelTagComponent,
|
|
4
5
|
isUndef,
|
|
5
6
|
isVueComponent
|
|
6
|
-
} from "./chunk-
|
|
7
|
+
} from "./chunk-XE4ZKGPH.mjs";
|
|
7
8
|
import "./chunk-QZ7VFGWC.mjs";
|
|
8
9
|
export {
|
|
9
10
|
isDef,
|
|
10
11
|
isEqual,
|
|
12
|
+
isPixelTagComponent,
|
|
11
13
|
isUndef,
|
|
12
14
|
isVueComponent
|
|
13
15
|
};
|