@shulex/icons 1.0.15 → 1.0.16
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/README.md +5 -0
- package/dist/icons/HelpCricleOutlined.d.ts +4 -0
- package/dist/icons/HelpCricleOutlined.mjs +9 -0
- package/dist/icons/LightningFilled.d.ts +4 -0
- package/dist/icons/LightningFilled.mjs +9 -0
- package/dist/icons/StarPurpleColored.d.ts +4 -0
- package/dist/icons/StarPurpleColored.mjs +9 -0
- package/dist/icons/index.d.ts +3 -0
- package/dist/icons/index.mjs +3 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -98,3 +98,8 @@ pnpm release
|
|
|
98
98
|
| `pnpm pull` | 从 Figma 拉取 SVG 文件(未来) |
|
|
99
99
|
| `pnpm sync` | 同步 Figma + 生成组件(未来) |
|
|
100
100
|
| `pnpm release` | 自动升级版本并发布 |
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
## 可能遇到的问题
|
|
104
|
+
1. pnpm release 发布的时候会提示打开npm校验登录页做二次2FA校验,但是登录之后回调没响应
|
|
105
|
+
解决方法:设置账号里的access token,开启bypass 2fa,然后把令牌设置进去 npm config set //registry.npmjs.org/:_authToken $NPM_TOKEN
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import ShulexIcon from "../components/ShulexIcon.mjs";
|
|
2
|
+
import * as React from "react";
|
|
3
|
+
const InnerSvg = (props) => /* @__PURE__ */ React.createElement("svg", { viewBox: "0 0 16 16", ...props }, /* @__PURE__ */ React.createElement("path", { d: "M8 10.88a.83.83 0 1 1 0 1.66.83.83 0 0 1 0-1.66M8 3.54a2.67 2.67 0 0 1 .67 5.25v.75a.67.67 0 0 1-1.34 0v-1.4c.04-.34.32-.6.67-.6a1.33 1.33 0 1 0-1.33-1.33.67.67 0 0 1-1.34 0c0-1.47 1.2-2.67 2.67-2.67" }), /* @__PURE__ */ React.createElement("path", { fillRule: "evenodd", d: "M8 .67A7.3 7.3 0 0 1 15.33 8 7.3 7.3 0 0 1 8 15.33 7.3 7.3 0 0 1 .67 8 7.3 7.3 0 0 1 8 .67M8 2a6 6 0 0 0-6 6 6 6 0 0 0 6 6 6 6 0 0 0 6-6 6 6 0 0 0-6-6", clipRule: "evenodd" }));
|
|
4
|
+
const HelpCricleOutlined = (props, ref) => /* @__PURE__ */ React.createElement(ShulexIcon, { ...props, ref, Icon: InnerSvg, colored: false });
|
|
5
|
+
const RefIcon = React.forwardRef(HelpCricleOutlined);
|
|
6
|
+
if (process.env.NODE_ENV !== "production") {
|
|
7
|
+
RefIcon.displayName = "HelpCricleOutlined";
|
|
8
|
+
}
|
|
9
|
+
export default RefIcon;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import ShulexIcon from "../components/ShulexIcon.mjs";
|
|
2
|
+
import * as React from "react";
|
|
3
|
+
const InnerSvg = (props) => /* @__PURE__ */ React.createElement("svg", { viewBox: "0 0 16 16", ...props }, /* @__PURE__ */ React.createElement("path", { d: "m2.22 9.18 5.42-7.67a.2.2 0 0 1 .36.12V6.3q.02.18.2.2h4.41a.2.2 0 0 1 .17.32l-5.42 7.67a.2.2 0 0 1-.36-.12V9.7a.2.2 0 0 0-.2-.2H2.39a.2.2 0 0 1-.17-.32" }));
|
|
4
|
+
const LightningFilled = (props, ref) => /* @__PURE__ */ React.createElement(ShulexIcon, { ...props, ref, Icon: InnerSvg, colored: false });
|
|
5
|
+
const RefIcon = React.forwardRef(LightningFilled);
|
|
6
|
+
if (process.env.NODE_ENV !== "production") {
|
|
7
|
+
RefIcon.displayName = "LightningFilled";
|
|
8
|
+
}
|
|
9
|
+
export default RefIcon;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import ShulexIcon from "../components/ShulexIcon.mjs";
|
|
2
|
+
import * as React from "react";
|
|
3
|
+
const InnerSvg = (props) => /* @__PURE__ */ React.createElement("svg", { fill: "none", viewBox: "0 0 16 16", ...props }, /* @__PURE__ */ React.createElement("path", { fill: "#9041F7", d: "M8.01.41A8 8 0 0 0 16 8l-.41.01A8 8 0 0 0 8 15.6L8 16A8 8 0 0 0 .41 8.01L0 8a8 8 0 0 0 8-8z" }));
|
|
4
|
+
const StarPurpleColored = (props, ref) => /* @__PURE__ */ React.createElement(ShulexIcon, { ...props, ref, Icon: InnerSvg, colored: true });
|
|
5
|
+
const RefIcon = React.forwardRef(StarPurpleColored);
|
|
6
|
+
if (process.env.NODE_ENV !== "production") {
|
|
7
|
+
RefIcon.displayName = "StarPurpleColored";
|
|
8
|
+
}
|
|
9
|
+
export default RefIcon;
|
package/dist/icons/index.d.ts
CHANGED
|
@@ -116,6 +116,7 @@ export { default as FreshdeskLogoColored } from './FreshdeskLogoColored';
|
|
|
116
116
|
export { default as GenerationProcessOutlined } from './GenerationProcessOutlined';
|
|
117
117
|
export { default as GmailLogoColored } from './GmailLogoColored';
|
|
118
118
|
export { default as GoogleLogoColored } from './GoogleLogoColored';
|
|
119
|
+
export { default as HelpCricleOutlined } from './HelpCricleOutlined';
|
|
119
120
|
export { default as HistoryOutlined } from './HistoryOutlined';
|
|
120
121
|
export { default as HolderOutlined } from './HolderOutlined';
|
|
121
122
|
export { default as IdeaFilled } from './IdeaFilled';
|
|
@@ -134,6 +135,7 @@ export { default as KnowledgeOutlined } from './KnowledgeOutlined';
|
|
|
134
135
|
export { default as LanguageOutlined } from './LanguageOutlined';
|
|
135
136
|
export { default as LayoutFilled } from './LayoutFilled';
|
|
136
137
|
export { default as LeftOutlined } from './LeftOutlined';
|
|
138
|
+
export { default as LightningFilled } from './LightningFilled';
|
|
137
139
|
export { default as LikeOutlined } from './LikeOutlined';
|
|
138
140
|
export { default as LineLogoColored } from './LineLogoColored';
|
|
139
141
|
export { default as LineLogoFilled } from './LineLogoFilled';
|
|
@@ -220,6 +222,7 @@ export { default as SortAscOutlined } from './SortAscOutlined';
|
|
|
220
222
|
export { default as SortDescOutlined } from './SortDescOutlined';
|
|
221
223
|
export { default as SortOutlined } from './SortOutlined';
|
|
222
224
|
export { default as StarFilled } from './StarFilled';
|
|
225
|
+
export { default as StarPurpleColored } from './StarPurpleColored';
|
|
223
226
|
export { default as StoreFilled } from './StoreFilled';
|
|
224
227
|
export { default as StoreOutlined } from './StoreOutlined';
|
|
225
228
|
export { default as SwapOutlined } from './SwapOutlined';
|
package/dist/icons/index.mjs
CHANGED
|
@@ -116,6 +116,7 @@ export { default as FreshdeskLogoColored } from "./FreshdeskLogoColored.mjs";
|
|
|
116
116
|
export { default as GenerationProcessOutlined } from "./GenerationProcessOutlined.mjs";
|
|
117
117
|
export { default as GmailLogoColored } from "./GmailLogoColored.mjs";
|
|
118
118
|
export { default as GoogleLogoColored } from "./GoogleLogoColored.mjs";
|
|
119
|
+
export { default as HelpCricleOutlined } from "./HelpCricleOutlined.mjs";
|
|
119
120
|
export { default as HistoryOutlined } from "./HistoryOutlined.mjs";
|
|
120
121
|
export { default as HolderOutlined } from "./HolderOutlined.mjs";
|
|
121
122
|
export { default as IdeaFilled } from "./IdeaFilled.mjs";
|
|
@@ -134,6 +135,7 @@ export { default as KnowledgeOutlined } from "./KnowledgeOutlined.mjs";
|
|
|
134
135
|
export { default as LanguageOutlined } from "./LanguageOutlined.mjs";
|
|
135
136
|
export { default as LayoutFilled } from "./LayoutFilled.mjs";
|
|
136
137
|
export { default as LeftOutlined } from "./LeftOutlined.mjs";
|
|
138
|
+
export { default as LightningFilled } from "./LightningFilled.mjs";
|
|
137
139
|
export { default as LikeOutlined } from "./LikeOutlined.mjs";
|
|
138
140
|
export { default as LineLogoColored } from "./LineLogoColored.mjs";
|
|
139
141
|
export { default as LineLogoFilled } from "./LineLogoFilled.mjs";
|
|
@@ -220,6 +222,7 @@ export { default as SortAscOutlined } from "./SortAscOutlined.mjs";
|
|
|
220
222
|
export { default as SortDescOutlined } from "./SortDescOutlined.mjs";
|
|
221
223
|
export { default as SortOutlined } from "./SortOutlined.mjs";
|
|
222
224
|
export { default as StarFilled } from "./StarFilled.mjs";
|
|
225
|
+
export { default as StarPurpleColored } from "./StarPurpleColored.mjs";
|
|
223
226
|
export { default as StoreFilled } from "./StoreFilled.mjs";
|
|
224
227
|
export { default as StoreOutlined } from "./StoreOutlined.mjs";
|
|
225
228
|
export { default as SwapOutlined } from "./SwapOutlined.mjs";
|