[go: up one dir, main page]

Skip to content

Commit

Permalink
fix: storybook dependency version and pos (#1459)
Browse files Browse the repository at this point in the history
* fix: storybook dependency version and pos

* chore: dedupe and nolyfill

* fix: image block style issue

* chore: fix storybook image block placeholder text
  • Loading branch information
Saul-Mirone authored Aug 4, 2024
1 parent 54f405e commit 82e91a2
Show file tree
Hide file tree
Showing 5 changed files with 242 additions and 3,170 deletions.
56 changes: 24 additions & 32 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,6 @@
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-typescript": "^11.0.0",
"@storybook/addon-actions": "^8.1.6",
"@storybook/addon-essentials": "8.2.7",
"@storybook/builder-vite": "^8.0.0",
"@storybook/core-server": "8.2.7",
"@storybook/html": "^8.0.0",
"@storybook/html-vite": "^8.0.0",
"@storybook/test": "^8.0.0",
"@storybook/test-runner": "^0.19.0",
"@swc-node/register": "^1.10.9",
"@swc/core": "^1.7.5",
"@swc/helpers": "^0.5.12",
Expand Down Expand Up @@ -86,7 +78,6 @@
"rollup-plugin-dts": "^6.0.0",
"rollup-plugin-esbuild": "^6.0.0",
"rollup-plugin-postcss": "^4.0.2",
"storybook": "8.2.7",
"tailwindcss": "^3.2.4",
"tslib": "^2.5.0",
"typescript": "^5.4.4",
Expand All @@ -113,29 +104,30 @@
}
},
"overrides": {
"array-includes": "npm:@nolyfill/array-includes@latest",
"array.prototype.flat": "npm:@nolyfill/array.prototype.flat@latest",
"array.prototype.flatmap": "npm:@nolyfill/array.prototype.flatmap@latest",
"array.prototype.tosorted": "npm:@nolyfill/array.prototype.tosorted@latest",
"assert": "npm:@nolyfill/assert@latest",
"deep-equal": "npm:@nolyfill/deep-equal@latest",
"es-iterator-helpers": "npm:@nolyfill/es-iterator-helpers@latest",
"function-bind": "npm:@nolyfill/function-bind@latest",
"has": "npm:@nolyfill/has@latest",
"hasown": "npm:@nolyfill/hasown@latest",
"is-arguments": "npm:@nolyfill/is-arguments@latest",
"is-generator-function": "npm:@nolyfill/is-generator-function@latest",
"is-typed-array": "npm:@nolyfill/is-typed-array@latest",
"isarray": "npm:@nolyfill/isarray@latest",
"object.assign": "npm:@nolyfill/object.assign@latest",
"object.entries": "npm:@nolyfill/object.entries@latest",
"object.fromentries": "npm:@nolyfill/object.fromentries@latest",
"object.hasown": "npm:@nolyfill/object.hasown@latest",
"object.values": "npm:@nolyfill/object.values@latest",
"side-channel": "npm:@nolyfill/side-channel@latest",
"string.prototype.matchall": "npm:@nolyfill/string.prototype.matchall@latest",
"typedarray": "npm:@nolyfill/typedarray@latest",
"which-typed-array": "npm:@nolyfill/which-typed-array@latest"
"array-includes": "npm:@nolyfill/array-includes@^1",
"array.prototype.flat": "npm:@nolyfill/array.prototype.flat@^1",
"array.prototype.flatmap": "npm:@nolyfill/array.prototype.flatmap@^1",
"array.prototype.tosorted": "npm:@nolyfill/array.prototype.tosorted@^1",
"assert": "npm:@nolyfill/assert@^1",
"deep-equal": "npm:@nolyfill/deep-equal@^1",
"es-iterator-helpers": "npm:@nolyfill/es-iterator-helpers@^1",
"function-bind": "npm:@nolyfill/function-bind@^1",
"has": "npm:@nolyfill/has@^1",
"hasown": "npm:@nolyfill/hasown@^1",
"is-arguments": "npm:@nolyfill/is-arguments@^1",
"is-core-module": "npm:@nolyfill/is-core-module@^1",
"is-generator-function": "npm:@nolyfill/is-generator-function@^1",
"is-typed-array": "npm:@nolyfill/is-typed-array@^1",
"isarray": "npm:@nolyfill/isarray@^1",
"object.assign": "npm:@nolyfill/object.assign@^1",
"object.entries": "npm:@nolyfill/object.entries@^1",
"object.fromentries": "npm:@nolyfill/object.fromentries@^1",
"object.hasown": "npm:@nolyfill/object.hasown@^1",
"object.values": "npm:@nolyfill/object.values@^1",
"side-channel": "npm:@nolyfill/side-channel@^1",
"string.prototype.matchall": "npm:@nolyfill/string.prototype.matchall@^1",
"typedarray": "npm:@nolyfill/typedarray@^1",
"which-typed-array": "npm:@nolyfill/which-typed-array@^1"
}
}
}
2 changes: 2 additions & 0 deletions packages/crepe/src/theme/common/image-block.css
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@
svg {
width: 18px;
height: 18px;
fill: var(--crepe-color-outline);
}
padding: 3px;
width: 24px;
Expand Down Expand Up @@ -329,6 +330,7 @@
display: flex;
justify-content: center;
align-items: center;
fill: var(--crepe-color-outline);
}

.image-edit .link-importer .placeholder {
Expand Down
Loading

0 comments on commit 82e91a2

Please sign in to comment.