- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我最近在我的项目中安装了 Storybook
下面的依赖项和开发依赖项:
"dependencies": {
"@emotion/react": "^11.1.4",
"@emotion/styled": "^11.0.0",
"@fortawesome/fontawesome-svg-core": "^1.2.34",
"@fortawesome/free-solid-svg-icons": "^5.15.2",
"@fortawesome/react-fontawesome": "^0.1.14",
"@hot-loader/react-dom": "^17.0.1",
"node-sass": "^5.0.0",
"react": "^17.0.1",
"react-content-loader": "^6.0.1",
"react-dom": "^17.0.1",
"react-hot-loader": "^4.13.0",
"react-router-dom": "^5.2.0"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@emotion/babel-plugin": "^11.1.2",
"@emotion/babel-preset-css-prop": "^11.0.0",
"@emotion/jest": "^11.1.0",
"@emotion/styled-base": "^11.0.0",
"@storybook/addon-actions": "^6.1.15",
"@storybook/addon-essentials": "^6.1.15",
"@storybook/addon-links": "^6.1.15",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^6.1.15",
"@wojtekmaj/enzyme-adapter-react-17": "^0.4.1",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"babel-plugin-emotion": "^11.0.0",
"babel-plugin-require-context-hook": "^1.0.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^5.0.1",
"enzyme": "^3.11.0",
"enzyme-to-json": "^3.6.1",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.1.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"html-webpack-plugin": "^5.0.0-alpha.3",
"husky": "^4.3.8",
"jest": "^26.6.3",
"jest-prop-type-error": "^1.1.0",
"prettier": "^2.2.1",
"react-test-renderer": "^17.0.1",
"sass": "^1.32.4",
"sass-loader": "^10.1.1",
"standard-version": "^9.1.0",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^5.1.1",
"url-loader": "^4.1.1",
"webpack": "^5.15.0",
"webpack-bundle-analyzer": "^4.3.0",
"webpack-cli": "^4.3.1",
"webpack-dev-server": "^3.11.2"
},
我构建了一个使用
@emotion/styled
的简单按钮组件用于造型。但是,在运行
npm run storybook
时,我想为这个按钮添加一个故事。我收到以下错误
Module not found: Error: Can't resolve '@emotion/styled/base' in '/directory/to/Button'
这是我在按钮组件中导入的内容:
import styled from '@emotion/styled';
import { useTheme } from '@emotion/react';
const StyledButton = styled.button`
cursor: pointer;
font-size: ${({ fontSize }) => fontSize};
`;
这发生在使用
@emotion/styled
的其他组件上。也是。我是否缺少额外的依赖项,还是需要向 .babelrc 文件添加任何预设?
{
"presets": [
"@babel/preset-env",
"@babel/preset-react",
"@emotion/babel-preset-css-prop"
],
"env": {
"test": {
"plugins": ["require-context-hook"]
}
},
"plugins": ["react-hot-loader/babel", "@emotion"]
}
最佳答案
这是情感11的Break名称更改引起的问题。到目前为止,故事书内部仍在寻找v10名称以集成情感包。因此,在故事书修复它之前,您将有 2 个选项:
A. 降级为情绪 10.
B. 解决方法:
// .storybook/main.js
const path = require("path");
const fs = require("fs");
const { merge } = require("webpack-merge");
function getPackageDir(filepath) {
let currDir = path.dirname(require.resolve(filepath));
while (true) {
if (fs.existsSync(path.join(currDir, "package.json"))) {
return currDir;
}
const { dir, root } = path.parse(currDir);
if (dir === root) {
throw new Error(
`Could not find package.json in the parent directories starting from ${filepath}.`
);
}
currDir = dir;
}
}
module.exports = {
stories: [
"../stories/**/*.stories.mdx",
"../components/**/*.stories.@(ts|tsx|mdx)",
],
addons: ["@storybook/addon-links", "@storybook/addon-essentials"],
webpackFinal: async (config) => {
return merge(config, {
resolve: {
alias: {
"@emotion/core": getPackageDir("@emotion/react"),
"@emotion/styled": getPackageDir("@emotion/styled"),
"emotion-theming": getPackageDir("@emotion/react"),
},
},
});
},
};
关于reactjs - 找不到模块 : Error: Can't resolve '@emotion/styled/base' when running story book,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65894711/
我正在尝试在利用 Emotion 的 React 项目中使用本地托管字体及其 Global component .此方法适用于网络字体,例如 Google Fonts ,但是当我下载相同的字体并尝试将
在 Emotion v10 中,文档说“如果您从 @emotion/css/macro 导入它,则有一个 Babel 宏可用于来自 @emotion/core 的 css。”这显然适用于无法更改 ba
我正在使用 @emotion/react主题并将主题注入(inject)其中,我可以使用 useTheme 访问主题到组件中,但无法使用 @emotion/styled 将主题访问到样式中.请问有什么
我正在尝试使用 React Emotion设置一条水平线,中间有文本。它看起来像这样: ----------------------SOME TEXT-------------------------
运行 React 测试库以在使用 Emotion css 属性的 JSX 上生成快照,导致没有渲染任何 CSS。 我试过使用“@emotion/jest/serializer”,但仍然没有运气。 组件
在 Emotion 11 之前的版本中,我曾经像这样在开发中禁用 CSS 前缀: const emotionCache = createCache({ prefix: process.env.NO
我想设计两个按钮的样式:使用情感 css 使用图像向上和向下,但无法这样做。目前,我通常在函数中设置元素的样式。如何使用情感 css 实现这一目标? 我关注了 https://emotion.sh/d
我正在将我的应用程序的样式从 Less 转换为 Emotion 在 Less 中我有如下样式: @blue: #476882; background: rgba(red(@blue), green(@
我正在为我的应用创建聊天功能,我们有一组自定义表情符号。 如果用户在他们的评论中键入其中一个表情的快捷方式,我们需要能够检测到快捷方式按出现顺序并用适当的表情替换它们。 例如。 let emotes
我知道这与 Target another styled component on hover 非常相似 不过我想用emotion-js达到同样的效果 更具体地说,我正在尝试重新创建 this使用情感风
我正在尝试在 Emotion 中创建可重复使用的动画但遇到了一些问题。我为 fadeUp 定义了一个动画。效果很好。 export const animatedFadeUp = css` opac
在决定何时使用样式化组件而不是 css prop 时,是否有最佳实践或优缺点列表? 最佳答案 我通常更喜欢 styledComponent但是,有一些极端情况,比如为 设置样式对于 react-ro
我要安装neumorphism-react包裹。 但我得到了这个错误 Module not found: Can't resolve '@emotion/react' in'C:\Users\Asus
如果我安装 emotion那么 API 很好而且很清晰: 包.json: "dependencies": { "emotion": "^10.0.9", react 组件: import Reac
我使用 @emotion\styled 声明了以下样式按钮: const Button = styled.button` background: blue; ${size({ width: p
我目前正在开发一个不和谐的机器人,我试图在嵌入消息中显示自定义服务器表情,它应该出现在“插入表情图标”中,但我无法完成它。这是否可能?如果可能,如何实现? if (member.hasPermissi
我正在使用 Affectiva 的 Emotion SDK for Javascript 来播放和分析视频文件。目前,我正在以流的形式播放视频,并按照 "Analyze a video frame s
在元素中,我遇到了使用 Emotion 实现的 CSS-IN-JS。通常,我都是通过CSS样式的名称来查找对应组件的代码,但是由于生成的样式名称,我在元素代码中尝试从浏览器中查找元素时感到很痛苦。 实
在我维护的设计系统中,我们使用修改后的 BEM 格式来命名导出的 @emotion/css JSS 样式。 语法看起来像这样: Selector_descendant___modifier 例如(伪代
我想使用来自 react-emotion 的样式来使用 HighChartWrapper 包装 HighchartsReact。 下面是我正在尝试的伪代码。 import HighchartsReac
我是一名优秀的程序员,十分优秀!