storybook 9.0.0-alpha.10 → 9.0.0-alpha.11
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/bin/index.cjs +63 -64
- package/dist/bin/index.js +59 -60
- package/dist/cli/bin/index.cjs +80 -80
- package/dist/cli/bin/index.js +83 -83
- package/dist/common/index.cjs +61 -62
- package/dist/common/index.d.ts +0 -1
- package/dist/common/index.js +93 -94
- package/dist/component-testing/index.cjs +23 -0
- package/dist/component-testing/index.d.ts +3 -0
- package/dist/component-testing/index.js +5 -0
- package/dist/component-testing/manager.css +170 -0
- package/dist/component-testing/manager.js +3099 -0
- package/dist/component-testing/preview.cjs +40 -0
- package/dist/component-testing/preview.d.ts +5 -0
- package/dist/component-testing/preview.js +25 -0
- package/dist/components/index.cjs +1 -0
- package/dist/components/index.js +1 -0
- package/dist/core-server/presets/common-preset.cjs +1359 -1359
- package/dist/core-server/presets/common-preset.js +1406 -1406
- package/dist/instrumenter/index.cjs +475 -468
- package/dist/instrumenter/index.js +949 -950
- package/dist/manager/globals-runtime.js +55652 -49799
- package/dist/manager-api/index.cjs +206 -206
- package/dist/manager-api/index.d.ts +1 -1
- package/dist/manager-api/index.js +1 -1
- package/dist/preview/runtime.js +38686 -37394
- package/dist/preview-api/index.cjs +591 -588
- package/dist/preview-api/index.d.ts +2 -2
- package/dist/preview-api/index.js +580 -577
- package/package.json +22 -1
|
@@ -391,7 +391,7 @@ interface SubState$5 {
|
|
|
391
391
|
|
|
392
392
|
declare const isMacLike: () => boolean;
|
|
393
393
|
declare const controlOrMetaSymbol: () => "⌘" | "ctrl";
|
|
394
|
-
declare const controlOrMetaKey: () => "
|
|
394
|
+
declare const controlOrMetaKey: () => "control" | "meta";
|
|
395
395
|
declare const optionOrAltSymbol: () => "⌥" | "alt";
|
|
396
396
|
declare const isShortcutTaken: (arr1: string[], arr2: string[]) => boolean;
|
|
397
397
|
type KeyboardEventLike = Pick<KeyboardEvent, 'altKey' | 'ctrlKey' | 'metaKey' | 'shiftKey' | 'key' | 'code' | 'keyCode' | 'preventDefault'>;
|
|
@@ -3241,7 +3241,7 @@ import { global as Jt } from "@storybook/global";
|
|
|
3241
3241
|
import F from "semver";
|
|
3242
3242
|
|
|
3243
3243
|
// src/manager-api/version.ts
|
|
3244
|
-
var y0 = "9.0.0-alpha.
|
|
3244
|
+
var y0 = "9.0.0-alpha.11";
|
|
3245
3245
|
|
|
3246
3246
|
// src/manager-api/modules/versions.ts
|
|
3247
3247
|
var { VERSIONCHECK: kn } = Jt, w0 = (0, R0.default)(1)(() => {
|