@storybook/addon-vitest 10.1.0-alpha.9 → 10.1.0-beta.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/_browser-chunks/chunk-TJXI7EIW.js +61 -0
- package/dist/_node-chunks/chunk-3NMZMB7I.js +71 -0
- package/dist/_node-chunks/chunk-FUZOQ3FW.js +339 -0
- package/dist/_node-chunks/chunk-GK6RMDY2.js +138 -0
- package/dist/_node-chunks/chunk-HKXN64KX.js +45 -0
- package/dist/_node-chunks/chunk-LVG5WDH3.js +158 -0
- package/dist/_node-chunks/chunk-MZFBI7ON.js +61 -0
- package/dist/_node-chunks/chunk-NMJA4RKJ.js +38 -0
- package/dist/_node-chunks/chunk-R65ONYP6.js +44 -0
- package/dist/_node-chunks/{chunk-WMX7UISE.js → chunk-XHKBPQ3A.js} +15 -24
- package/dist/index.js +1 -5
- package/dist/manager.js +274 -491
- package/dist/node/coverage-reporter.js +319 -864
- package/dist/node/vitest.js +201 -456
- package/dist/postinstall.js +497 -1502
- package/dist/preset.js +166 -349
- package/dist/vitest-plugin/global-setup.js +52 -107
- package/dist/vitest-plugin/index.js +1163 -2378
- package/dist/vitest-plugin/setup-file.js +6 -12
- package/dist/vitest-plugin/test-utils.js +31 -71
- package/package.json +3 -7
- package/dist/_browser-chunks/chunk-CAYLRBRX.js +0 -77
- package/dist/_browser-chunks/chunk-JK72E6FR.js +0 -6
- package/dist/_node-chunks/chunk-4TORVAZH.js +0 -105
- package/dist/_node-chunks/chunk-6Q62BC44.js +0 -37
- package/dist/_node-chunks/chunk-EQRHHTTK.js +0 -98
- package/dist/_node-chunks/chunk-EWGF3LDY.js +0 -481
- package/dist/_node-chunks/chunk-RDCJFLHV.js +0 -247
- package/dist/_node-chunks/chunk-W5CYX7PP.js +0 -50
- package/dist/_node-chunks/chunk-XKCUKATS.js +0 -2574
|
@@ -0,0 +1,158 @@
|
|
|
1
|
+
import CJS_COMPAT_NODE_URL_0y3a0b4lhx0h from 'node:url';
|
|
2
|
+
import CJS_COMPAT_NODE_PATH_0y3a0b4lhx0h from 'node:path';
|
|
3
|
+
import CJS_COMPAT_NODE_MODULE_0y3a0b4lhx0h from "node:module";
|
|
4
|
+
|
|
5
|
+
var __filename = CJS_COMPAT_NODE_URL_0y3a0b4lhx0h.fileURLToPath(import.meta.url);
|
|
6
|
+
var __dirname = CJS_COMPAT_NODE_PATH_0y3a0b4lhx0h.dirname(__filename);
|
|
7
|
+
var require = CJS_COMPAT_NODE_MODULE_0y3a0b4lhx0h.createRequire(import.meta.url);
|
|
8
|
+
|
|
9
|
+
// ------------------------------------------------------------
|
|
10
|
+
// end of CJS compatibility banner, injected by Storybook's esbuild configuration
|
|
11
|
+
// ------------------------------------------------------------
|
|
12
|
+
import {
|
|
13
|
+
dirname,
|
|
14
|
+
join
|
|
15
|
+
} from "./chunk-GK6RMDY2.js";
|
|
16
|
+
|
|
17
|
+
// ../../core/src/shared/utils/module.ts
|
|
18
|
+
import { fileURLToPath, pathToFileURL } from "node:url";
|
|
19
|
+
|
|
20
|
+
// ../../node_modules/exsolve/dist/index.mjs
|
|
21
|
+
import assert from "node:assert";
|
|
22
|
+
import v8 from "node:v8";
|
|
23
|
+
import { format, inspect } from "node:util";
|
|
24
|
+
var own$1 = {}.hasOwnProperty, classRegExp = /^([A-Z][a-z\d]*)+$/, kTypes = /* @__PURE__ */ new Set([
|
|
25
|
+
"string",
|
|
26
|
+
"function",
|
|
27
|
+
"number",
|
|
28
|
+
"object",
|
|
29
|
+
"Function",
|
|
30
|
+
"Object",
|
|
31
|
+
"boolean",
|
|
32
|
+
"bigint",
|
|
33
|
+
"symbol"
|
|
34
|
+
]), messages = /* @__PURE__ */ new Map(), nodeInternalPrefix = "__node_internal_", userStackTraceLimit;
|
|
35
|
+
function formatList(array, type = "and") {
|
|
36
|
+
return array.length < 3 ? array.join(` ${type} `) : `${array.slice(0, -1).join(", ")}, ${type} ${array.at(-1)}`;
|
|
37
|
+
}
|
|
38
|
+
function createError(sym, value, constructor) {
|
|
39
|
+
return messages.set(sym, value), makeNodeErrorWithCode(constructor, sym);
|
|
40
|
+
}
|
|
41
|
+
function makeNodeErrorWithCode(Base, key) {
|
|
42
|
+
return function(...parameters) {
|
|
43
|
+
let limit = Error.stackTraceLimit;
|
|
44
|
+
isErrorStackTraceLimitWritable() && (Error.stackTraceLimit = 0);
|
|
45
|
+
let error = new Base();
|
|
46
|
+
isErrorStackTraceLimitWritable() && (Error.stackTraceLimit = limit);
|
|
47
|
+
let message = getMessage(key, parameters, error);
|
|
48
|
+
return Object.defineProperties(error, {
|
|
49
|
+
message: {
|
|
50
|
+
value: message,
|
|
51
|
+
enumerable: !1,
|
|
52
|
+
writable: !0,
|
|
53
|
+
configurable: !0
|
|
54
|
+
},
|
|
55
|
+
toString: {
|
|
56
|
+
value() {
|
|
57
|
+
return `${this.name} [${key}]: ${this.message}`;
|
|
58
|
+
},
|
|
59
|
+
enumerable: !1,
|
|
60
|
+
writable: !0,
|
|
61
|
+
configurable: !0
|
|
62
|
+
}
|
|
63
|
+
}), captureLargerStackTrace(error), error.code = key, error;
|
|
64
|
+
};
|
|
65
|
+
}
|
|
66
|
+
function isErrorStackTraceLimitWritable() {
|
|
67
|
+
try {
|
|
68
|
+
if (v8.startupSnapshot.isBuildingSnapshot()) return !1;
|
|
69
|
+
} catch {
|
|
70
|
+
}
|
|
71
|
+
let desc = Object.getOwnPropertyDescriptor(Error, "stackTraceLimit");
|
|
72
|
+
return desc === void 0 ? Object.isExtensible(Error) : own$1.call(desc, "writable") && desc.writable !== void 0 ? desc.writable : desc.set !== void 0;
|
|
73
|
+
}
|
|
74
|
+
function hideStackFrames(wrappedFunction) {
|
|
75
|
+
let hidden = nodeInternalPrefix + wrappedFunction.name;
|
|
76
|
+
return Object.defineProperty(wrappedFunction, "name", { value: hidden }), wrappedFunction;
|
|
77
|
+
}
|
|
78
|
+
var captureLargerStackTrace = hideStackFrames(function(error) {
|
|
79
|
+
let stackTraceLimitIsWritable = isErrorStackTraceLimitWritable();
|
|
80
|
+
return stackTraceLimitIsWritable && (userStackTraceLimit = Error.stackTraceLimit, Error.stackTraceLimit = Number.POSITIVE_INFINITY), Error.captureStackTrace(error), stackTraceLimitIsWritable && (Error.stackTraceLimit = userStackTraceLimit), error;
|
|
81
|
+
});
|
|
82
|
+
function getMessage(key, parameters, self) {
|
|
83
|
+
let message = messages.get(key);
|
|
84
|
+
if (assert.ok(message !== void 0, "expected `message` to be found"), typeof message == "function")
|
|
85
|
+
return assert.ok(message.length <= parameters.length, `Code: ${key}; The provided arguments length (${parameters.length}) does not match the required ones (${message.length}).`), Reflect.apply(message, self, parameters);
|
|
86
|
+
let regex = /%[dfijoOs]/g, expectedLength = 0;
|
|
87
|
+
for (; regex.exec(message) !== null; ) expectedLength++;
|
|
88
|
+
return assert.ok(expectedLength === parameters.length, `Code: ${key}; The provided arguments length (${parameters.length}) does not match the required ones (${expectedLength}).`), parameters.length === 0 ? message : (parameters.unshift(message), Reflect.apply(format, null, parameters));
|
|
89
|
+
}
|
|
90
|
+
function determineSpecificType(value) {
|
|
91
|
+
if (value == null) return String(value);
|
|
92
|
+
if (typeof value == "function" && value.name) return `function ${value.name}`;
|
|
93
|
+
if (typeof value == "object")
|
|
94
|
+
return value.constructor && value.constructor.name ? `an instance of ${value.constructor.name}` : `${inspect(value, { depth: -1 })}`;
|
|
95
|
+
let inspected = inspect(value, { colors: !1 });
|
|
96
|
+
return inspected.length > 28 && (inspected = `${inspected.slice(0, 25)}...`), `type ${typeof value} (${inspected})`;
|
|
97
|
+
}
|
|
98
|
+
var ERR_INVALID_ARG_TYPE = createError("ERR_INVALID_ARG_TYPE", (name, expected, actual) => {
|
|
99
|
+
assert.ok(typeof name == "string", "'name' must be a string"), Array.isArray(expected) || (expected = [expected]);
|
|
100
|
+
let message = "The ";
|
|
101
|
+
if (name.endsWith(" argument")) message += `${name} `;
|
|
102
|
+
else {
|
|
103
|
+
let type = name.includes(".") ? "property" : "argument";
|
|
104
|
+
message += `"${name}" ${type} `;
|
|
105
|
+
}
|
|
106
|
+
message += "must be ";
|
|
107
|
+
let types = [], instances = [], other = [];
|
|
108
|
+
for (let value of expected)
|
|
109
|
+
assert.ok(typeof value == "string", "All expected entries have to be of type string"), kTypes.has(value) ? types.push(value.toLowerCase()) : classRegExp.exec(value) === null ? (assert.ok(value !== "object", 'The value "object" should be written as "Object"'), other.push(value)) : instances.push(value);
|
|
110
|
+
if (instances.length > 0) {
|
|
111
|
+
let pos = types.indexOf("object");
|
|
112
|
+
pos !== -1 && (types.slice(pos, 1), instances.push("Object"));
|
|
113
|
+
}
|
|
114
|
+
return types.length > 0 && (message += `${types.length > 1 ? "one of type" : "of type"} ${formatList(types, "or")}`, (instances.length > 0 || other.length > 0) && (message += " or ")), instances.length > 0 && (message += `an instance of ${formatList(instances, "or")}`, other.length > 0 && (message += " or ")), other.length > 0 && (other.length > 1 ? message += `one of ${formatList(other, "or")}` : (other[0]?.toLowerCase() !== other[0] && (message += "an "), message += `${other[0]}`)), message += `. Received ${determineSpecificType(actual)}`, message;
|
|
115
|
+
}, TypeError), ERR_INVALID_MODULE_SPECIFIER = createError(
|
|
116
|
+
"ERR_INVALID_MODULE_SPECIFIER",
|
|
117
|
+
/**
|
|
118
|
+
* @param {string} request
|
|
119
|
+
* @param {string} reason
|
|
120
|
+
* @param {string} [base]
|
|
121
|
+
*/
|
|
122
|
+
(request, reason, base) => `Invalid module "${request}" ${reason}${base ? ` imported from ${base}` : ""}`,
|
|
123
|
+
TypeError
|
|
124
|
+
), ERR_INVALID_PACKAGE_CONFIG = createError("ERR_INVALID_PACKAGE_CONFIG", (path$1, base, message) => `Invalid package config ${path$1}${base ? ` while importing ${base}` : ""}${message ? `. ${message}` : ""}`, Error), ERR_INVALID_PACKAGE_TARGET = createError("ERR_INVALID_PACKAGE_TARGET", (packagePath, key, target, isImport = !1, base) => {
|
|
125
|
+
let relatedError = typeof target == "string" && !isImport && target.length > 0 && !target.startsWith("./");
|
|
126
|
+
return key === "." ? (assert.ok(isImport === !1), `Invalid "exports" main target ${JSON.stringify(target)} defined in the package config ${packagePath}package.json${base ? ` imported from ${base}` : ""}${relatedError ? '; targets must start with "./"' : ""}`) : `Invalid "${isImport ? "imports" : "exports"}" target ${JSON.stringify(target)} defined for '${key}' in the package config ${packagePath}package.json${base ? ` imported from ${base}` : ""}${relatedError ? '; targets must start with "./"' : ""}`;
|
|
127
|
+
}, Error), ERR_MODULE_NOT_FOUND = createError("ERR_MODULE_NOT_FOUND", (path$1, base, exactUrl = !1) => `Cannot find ${exactUrl ? "module" : "package"} '${path$1}' imported from ${base}`, Error), ERR_NETWORK_IMPORT_DISALLOWED = createError("ERR_NETWORK_IMPORT_DISALLOWED", "import of '%s' by %s is not supported: %s", Error), ERR_PACKAGE_IMPORT_NOT_DEFINED = createError("ERR_PACKAGE_IMPORT_NOT_DEFINED", (specifier, packagePath, base) => `Package import specifier "${specifier}" is not defined${packagePath ? ` in package ${packagePath || ""}package.json` : ""} imported from ${base}`, TypeError), ERR_PACKAGE_PATH_NOT_EXPORTED = createError(
|
|
128
|
+
"ERR_PACKAGE_PATH_NOT_EXPORTED",
|
|
129
|
+
/**
|
|
130
|
+
* @param {string} packagePath
|
|
131
|
+
* @param {string} subpath
|
|
132
|
+
* @param {string} [base]
|
|
133
|
+
*/
|
|
134
|
+
(packagePath, subpath, base) => subpath === "." ? `No "exports" main defined in ${packagePath}package.json${base ? ` imported from ${base}` : ""}` : `Package subpath '${subpath}' is not defined by "exports" in ${packagePath}package.json${base ? ` imported from ${base}` : ""}`,
|
|
135
|
+
Error
|
|
136
|
+
), ERR_UNSUPPORTED_DIR_IMPORT = createError("ERR_UNSUPPORTED_DIR_IMPORT", "Directory import '%s' is not supported resolving ES modules imported from %s", Error), ERR_UNSUPPORTED_RESOLVE_REQUEST = createError("ERR_UNSUPPORTED_RESOLVE_REQUEST", 'Failed to resolve module specifier "%s" from "%s": Invalid relative URL or base scheme is not hierarchical.', TypeError), ERR_UNKNOWN_FILE_EXTENSION = createError("ERR_UNKNOWN_FILE_EXTENSION", (extension, path$1) => `Unknown file extension "${extension}" for ${path$1}`, TypeError), ERR_INVALID_ARG_VALUE = createError("ERR_INVALID_ARG_VALUE", (name, value, reason = "is invalid") => {
|
|
137
|
+
let inspected = inspect(value);
|
|
138
|
+
return inspected.length > 128 && (inspected = `${inspected.slice(0, 128)}...`), `The ${name.includes(".") ? "property" : "argument"} '${name}' ${reason}. Received ${inspected}`;
|
|
139
|
+
}, TypeError), hasOwnProperty$1 = {}.hasOwnProperty;
|
|
140
|
+
var hasOwnProperty = {}.hasOwnProperty;
|
|
141
|
+
var RegExpPrototypeSymbolReplace = RegExp.prototype[Symbol.replace], own = {}.hasOwnProperty;
|
|
142
|
+
var isWindows = process.platform === "win32", globalCache = globalThis.__EXSOLVE_CACHE__ ||= /* @__PURE__ */ new Map();
|
|
143
|
+
|
|
144
|
+
// ../../core/src/shared/utils/module.ts
|
|
145
|
+
var importMetaResolve = (...args) => typeof import.meta.resolve != "function" && process.env.VITEST === "true" ? (console.warn(
|
|
146
|
+
"importMetaResolve from within Storybook is being used in a Vitest test, but it shouldn't be. Please report this at https://github.com/storybookjs/storybook/issues/new?template=bug_report.yml"
|
|
147
|
+
), pathToFileURL(args[0]).href) : import.meta.resolve(...args), resolvePackageDir = (pkg, parent) => {
|
|
148
|
+
try {
|
|
149
|
+
return dirname(fileURLToPath(importMetaResolve(join(pkg, "package.json"), parent)));
|
|
150
|
+
} catch {
|
|
151
|
+
return dirname(fileURLToPath(importMetaResolve(join(pkg, "package.json"))));
|
|
152
|
+
}
|
|
153
|
+
};
|
|
154
|
+
|
|
155
|
+
export {
|
|
156
|
+
importMetaResolve,
|
|
157
|
+
resolvePackageDir
|
|
158
|
+
};
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
import CJS_COMPAT_NODE_URL_0y3a0b4lhx0h from 'node:url';
|
|
2
|
+
import CJS_COMPAT_NODE_PATH_0y3a0b4lhx0h from 'node:path';
|
|
3
|
+
import CJS_COMPAT_NODE_MODULE_0y3a0b4lhx0h from "node:module";
|
|
4
|
+
|
|
5
|
+
var __filename = CJS_COMPAT_NODE_URL_0y3a0b4lhx0h.fileURLToPath(import.meta.url);
|
|
6
|
+
var __dirname = CJS_COMPAT_NODE_PATH_0y3a0b4lhx0h.dirname(__filename);
|
|
7
|
+
var require = CJS_COMPAT_NODE_MODULE_0y3a0b4lhx0h.createRequire(import.meta.url);
|
|
8
|
+
|
|
9
|
+
// ------------------------------------------------------------
|
|
10
|
+
// end of CJS compatibility banner, injected by Storybook's esbuild configuration
|
|
11
|
+
// ------------------------------------------------------------
|
|
12
|
+
import {
|
|
13
|
+
__commonJS
|
|
14
|
+
} from "./chunk-HKXN64KX.js";
|
|
15
|
+
|
|
16
|
+
// ../../node_modules/ts-dedent/dist/index.js
|
|
17
|
+
var require_dist = __commonJS({
|
|
18
|
+
"../../node_modules/ts-dedent/dist/index.js"(exports) {
|
|
19
|
+
"use strict";
|
|
20
|
+
Object.defineProperty(exports, "__esModule", { value: !0 });
|
|
21
|
+
exports.dedent = void 0;
|
|
22
|
+
function dedent(templ) {
|
|
23
|
+
for (var values = [], _i = 1; _i < arguments.length; _i++)
|
|
24
|
+
values[_i - 1] = arguments[_i];
|
|
25
|
+
var strings = Array.from(typeof templ == "string" ? [templ] : templ);
|
|
26
|
+
strings[strings.length - 1] = strings[strings.length - 1].replace(/\r?\n([\t ]*)$/, "");
|
|
27
|
+
var indentLengths = strings.reduce(function(arr, str) {
|
|
28
|
+
var matches = str.match(/\n([\t ]+|(?!\s).)/g);
|
|
29
|
+
return matches ? arr.concat(matches.map(function(match) {
|
|
30
|
+
var _a, _b;
|
|
31
|
+
return (_b = (_a = match.match(/[\t ]/g)) === null || _a === void 0 ? void 0 : _a.length) !== null && _b !== void 0 ? _b : 0;
|
|
32
|
+
})) : arr;
|
|
33
|
+
}, []);
|
|
34
|
+
if (indentLengths.length) {
|
|
35
|
+
var pattern_1 = new RegExp(`
|
|
36
|
+
[ ]{` + Math.min.apply(Math, indentLengths) + "}", "g");
|
|
37
|
+
strings = strings.map(function(str) {
|
|
38
|
+
return str.replace(pattern_1, `
|
|
39
|
+
`);
|
|
40
|
+
});
|
|
41
|
+
}
|
|
42
|
+
strings[0] = strings[0].replace(/^\r?\n/, "");
|
|
43
|
+
var string = strings[0];
|
|
44
|
+
return values.forEach(function(value, i) {
|
|
45
|
+
var endentations = string.match(/(?:^|\n)( *)$/), endentation = endentations ? endentations[1] : "", indentedValue = value;
|
|
46
|
+
typeof value == "string" && value.includes(`
|
|
47
|
+
`) && (indentedValue = String(value).split(`
|
|
48
|
+
`).map(function(str, i2) {
|
|
49
|
+
return i2 === 0 ? str : "" + endentation + str;
|
|
50
|
+
}).join(`
|
|
51
|
+
`)), string += indentedValue + strings[i + 1];
|
|
52
|
+
}), string;
|
|
53
|
+
}
|
|
54
|
+
exports.dedent = dedent;
|
|
55
|
+
exports.default = dedent;
|
|
56
|
+
}
|
|
57
|
+
});
|
|
58
|
+
|
|
59
|
+
export {
|
|
60
|
+
require_dist
|
|
61
|
+
};
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import CJS_COMPAT_NODE_URL_0y3a0b4lhx0h from 'node:url';
|
|
2
|
+
import CJS_COMPAT_NODE_PATH_0y3a0b4lhx0h from 'node:path';
|
|
3
|
+
import CJS_COMPAT_NODE_MODULE_0y3a0b4lhx0h from "node:module";
|
|
4
|
+
|
|
5
|
+
var __filename = CJS_COMPAT_NODE_URL_0y3a0b4lhx0h.fileURLToPath(import.meta.url);
|
|
6
|
+
var __dirname = CJS_COMPAT_NODE_PATH_0y3a0b4lhx0h.dirname(__filename);
|
|
7
|
+
var require = CJS_COMPAT_NODE_MODULE_0y3a0b4lhx0h.createRequire(import.meta.url);
|
|
8
|
+
|
|
9
|
+
// ------------------------------------------------------------
|
|
10
|
+
// end of CJS compatibility banner, injected by Storybook's esbuild configuration
|
|
11
|
+
// ------------------------------------------------------------
|
|
12
|
+
import {
|
|
13
|
+
ADDON_ID
|
|
14
|
+
} from "./chunk-3NMZMB7I.js";
|
|
15
|
+
import {
|
|
16
|
+
require_picocolors
|
|
17
|
+
} from "./chunk-XHKBPQ3A.js";
|
|
18
|
+
import {
|
|
19
|
+
__toESM
|
|
20
|
+
} from "./chunk-HKXN64KX.js";
|
|
21
|
+
|
|
22
|
+
// src/logger.ts
|
|
23
|
+
var import_picocolors = __toESM(require_picocolors(), 1);
|
|
24
|
+
import { logger } from "storybook/internal/node-logger";
|
|
25
|
+
var log = (message) => {
|
|
26
|
+
logger.log(
|
|
27
|
+
`${import_picocolors.default.magenta(ADDON_ID)}: ${message.toString().replaceAll(/(│\n|│ )/g, "").trim()}`
|
|
28
|
+
);
|
|
29
|
+
};
|
|
30
|
+
|
|
31
|
+
// ../../node_modules/es-toolkit/dist/function/noop.mjs
|
|
32
|
+
function noop() {
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
export {
|
|
36
|
+
noop,
|
|
37
|
+
log
|
|
38
|
+
};
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import CJS_COMPAT_NODE_URL_0y3a0b4lhx0h from 'node:url';
|
|
2
|
+
import CJS_COMPAT_NODE_PATH_0y3a0b4lhx0h from 'node:path';
|
|
3
|
+
import CJS_COMPAT_NODE_MODULE_0y3a0b4lhx0h from "node:module";
|
|
4
|
+
|
|
5
|
+
var __filename = CJS_COMPAT_NODE_URL_0y3a0b4lhx0h.fileURLToPath(import.meta.url);
|
|
6
|
+
var __dirname = CJS_COMPAT_NODE_PATH_0y3a0b4lhx0h.dirname(__filename);
|
|
7
|
+
var require = CJS_COMPAT_NODE_MODULE_0y3a0b4lhx0h.createRequire(import.meta.url);
|
|
8
|
+
|
|
9
|
+
// ------------------------------------------------------------
|
|
10
|
+
// end of CJS compatibility banner, injected by Storybook's esbuild configuration
|
|
11
|
+
// ------------------------------------------------------------
|
|
12
|
+
|
|
13
|
+
// ../../node_modules/empathic/find.mjs
|
|
14
|
+
import { join as join2 } from "node:path";
|
|
15
|
+
import { existsSync, statSync } from "node:fs";
|
|
16
|
+
|
|
17
|
+
// ../../node_modules/empathic/walk.mjs
|
|
18
|
+
import { dirname } from "node:path";
|
|
19
|
+
|
|
20
|
+
// ../../node_modules/empathic/resolve.mjs
|
|
21
|
+
import { isAbsolute, join, resolve } from "node:path";
|
|
22
|
+
function absolute(input, root) {
|
|
23
|
+
return isAbsolute(input) ? input : resolve(root || ".", input);
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
// ../../node_modules/empathic/walk.mjs
|
|
27
|
+
function up(base, options) {
|
|
28
|
+
let { last, cwd } = options || {}, tmp = absolute(base, cwd), root = absolute(last || "/", cwd), prev, arr = [];
|
|
29
|
+
for (; prev !== root && (arr.push(tmp), tmp = dirname(prev = tmp), tmp !== prev); )
|
|
30
|
+
;
|
|
31
|
+
return arr;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
// ../../node_modules/empathic/find.mjs
|
|
35
|
+
function any(names, options) {
|
|
36
|
+
let dir, start = options && options.cwd || "", j = 0, len = names.length, tmp;
|
|
37
|
+
for (dir of up(start, options))
|
|
38
|
+
for (j = 0; j < len; j++)
|
|
39
|
+
if (tmp = join2(dir, names[j]), existsSync(tmp)) return tmp;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
export {
|
|
43
|
+
any
|
|
44
|
+
};
|
|
@@ -1,40 +1,31 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
import
|
|
1
|
+
import CJS_COMPAT_NODE_URL_0y3a0b4lhx0h from 'node:url';
|
|
2
|
+
import CJS_COMPAT_NODE_PATH_0y3a0b4lhx0h from 'node:path';
|
|
3
|
+
import CJS_COMPAT_NODE_MODULE_0y3a0b4lhx0h from "node:module";
|
|
4
4
|
|
|
5
|
-
var __filename =
|
|
6
|
-
var __dirname =
|
|
7
|
-
var require =
|
|
5
|
+
var __filename = CJS_COMPAT_NODE_URL_0y3a0b4lhx0h.fileURLToPath(import.meta.url);
|
|
6
|
+
var __dirname = CJS_COMPAT_NODE_PATH_0y3a0b4lhx0h.dirname(__filename);
|
|
7
|
+
var require = CJS_COMPAT_NODE_MODULE_0y3a0b4lhx0h.createRequire(import.meta.url);
|
|
8
8
|
|
|
9
9
|
// ------------------------------------------------------------
|
|
10
10
|
// end of CJS compatibility banner, injected by Storybook's esbuild configuration
|
|
11
11
|
// ------------------------------------------------------------
|
|
12
12
|
import {
|
|
13
|
-
__commonJS
|
|
14
|
-
|
|
15
|
-
} from "./chunk-W5CYX7PP.js";
|
|
13
|
+
__commonJS
|
|
14
|
+
} from "./chunk-HKXN64KX.js";
|
|
16
15
|
|
|
17
16
|
// ../../node_modules/picocolors/picocolors.js
|
|
18
17
|
var require_picocolors = __commonJS({
|
|
19
18
|
"../../node_modules/picocolors/picocolors.js"(exports, module) {
|
|
20
|
-
var p = process || {}
|
|
21
|
-
var argv = p.argv || [];
|
|
22
|
-
var env = p.env || {};
|
|
23
|
-
var isColorSupported = !(!!env.NO_COLOR || argv.includes("--no-color")) && (!!env.FORCE_COLOR || argv.includes("--color") || p.platform === "win32" || (p.stdout || {}).isTTY && env.TERM !== "dumb" || !!env.CI);
|
|
24
|
-
var formatter = /* @__PURE__ */ __name((open, close, replace = open) => (input) => {
|
|
19
|
+
var p = process || {}, argv = p.argv || [], env = p.env || {}, isColorSupported = !(env.NO_COLOR || argv.includes("--no-color")) && (!!env.FORCE_COLOR || argv.includes("--color") || p.platform === "win32" || (p.stdout || {}).isTTY && env.TERM !== "dumb" || !!env.CI), formatter = (open, close, replace = open) => (input) => {
|
|
25
20
|
let string = "" + input, index = string.indexOf(close, open.length);
|
|
26
21
|
return ~index ? open + replaceClose(string, close, replace, index) + close : open + string + close;
|
|
27
|
-
},
|
|
28
|
-
var replaceClose = /* @__PURE__ */ __name((string, close, replace, index) => {
|
|
22
|
+
}, replaceClose = (string, close, replace, index) => {
|
|
29
23
|
let result = "", cursor = 0;
|
|
30
|
-
do
|
|
31
|
-
result += string.substring(cursor, index) + replace;
|
|
32
|
-
|
|
33
|
-
index = string.indexOf(close, cursor);
|
|
34
|
-
} while (~index);
|
|
24
|
+
do
|
|
25
|
+
result += string.substring(cursor, index) + replace, cursor = index + close.length, index = string.indexOf(close, cursor);
|
|
26
|
+
while (~index);
|
|
35
27
|
return result + string.substring(cursor);
|
|
36
|
-
},
|
|
37
|
-
var createColors = /* @__PURE__ */ __name((enabled = isColorSupported) => {
|
|
28
|
+
}, createColors = (enabled = isColorSupported) => {
|
|
38
29
|
let f = enabled ? formatter : () => String;
|
|
39
30
|
return {
|
|
40
31
|
isColorSupported: enabled,
|
|
@@ -80,7 +71,7 @@ var require_picocolors = __commonJS({
|
|
|
80
71
|
bgCyanBright: f("\x1B[106m", "\x1B[49m"),
|
|
81
72
|
bgWhiteBright: f("\x1B[107m", "\x1B[49m")
|
|
82
73
|
};
|
|
83
|
-
}
|
|
74
|
+
};
|
|
84
75
|
module.exports = createColors();
|
|
85
76
|
module.exports.createColors = createColors;
|
|
86
77
|
}
|
package/dist/index.js
CHANGED
|
@@ -1,10 +1,6 @@
|
|
|
1
|
-
import {
|
|
2
|
-
__name
|
|
3
|
-
} from "./_browser-chunks/chunk-JK72E6FR.js";
|
|
4
|
-
|
|
5
1
|
// src/index.ts
|
|
6
2
|
import { definePreviewAddon } from "storybook/internal/csf";
|
|
7
|
-
var index_default =
|
|
3
|
+
var index_default = () => definePreviewAddon({});
|
|
8
4
|
export {
|
|
9
5
|
index_default as default
|
|
10
6
|
};
|