@shulex/icons 1.0.15 → 1.0.17

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 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,4 @@
1
+ import { ShulexIconProps } from '../components/ShulexIcon';
2
+ import * as React from "react";
3
+ declare const RefIcon: React.ForwardRefExoticComponent<Omit<ShulexIconProps, "ref"> & React.RefAttributes<HTMLSpanElement>>;
4
+ 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 24 24", ...props }, /* @__PURE__ */ React.createElement("rect", { width: 24, height: 24, fill: "#407BE6", rx: 8 }), /* @__PURE__ */ React.createElement("path", { fill: "#fff", fillRule: "evenodd", d: "M16.08 6.75a2.33 2.33 0 0 1 2.34 2.33v5.84a2.33 2.33 0 0 1-2.34 2.33H7.92a2.33 2.33 0 0 1-2.34-2.33V9.08a2.33 2.33 0 0 1 2.34-2.33zm-3.44 4.43c-.4.25-.89.25-1.28 0L7.92 8.94v1.4l2.8 1.82c.78.5 1.78.5 2.55 0l2.81-1.83V8.94z", clipRule: "evenodd" }));
4
+ const EmailRadiusColored = (props, ref) => /* @__PURE__ */ React.createElement(ShulexIcon, { ...props, ref, Icon: InnerSvg, colored: true });
5
+ const RefIcon = React.forwardRef(EmailRadiusColored);
6
+ if (process.env.NODE_ENV !== "production") {
7
+ RefIcon.displayName = "EmailRadiusColored";
8
+ }
9
+ export default RefIcon;
@@ -0,0 +1,4 @@
1
+ import { ShulexIconProps } from '../components/ShulexIcon';
2
+ import * as React from "react";
3
+ declare const RefIcon: React.ForwardRefExoticComponent<Omit<ShulexIconProps, "ref"> & React.RefAttributes<HTMLSpanElement>>;
4
+ 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: "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,4 @@
1
+ import { ShulexIconProps } from '../components/ShulexIcon';
2
+ import * as React from "react";
3
+ declare const RefIcon: React.ForwardRefExoticComponent<Omit<ShulexIconProps, "ref"> & React.RefAttributes<HTMLSpanElement>>;
4
+ 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,4 @@
1
+ import { ShulexIconProps } from '../components/ShulexIcon';
2
+ import * as React from "react";
3
+ declare const RefIcon: React.ForwardRefExoticComponent<Omit<ShulexIconProps, "ref"> & React.RefAttributes<HTMLSpanElement>>;
4
+ 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 24 24", ...props }, /* @__PURE__ */ React.createElement("rect", { width: 24, height: 24, fill: "#9747FF", rx: 8 }), /* @__PURE__ */ React.createElement("path", { fill: "#fff", d: "M9.2 6.98c.42 0 .8.23 1.01.6l.72 1.29c.18.33.2.74.02 1.09l-.59 1.17a3.4 3.4 0 0 0 1.88 2.09l.32.12 1.18-.6c.35-.16.75-.16 1.1.03l1.28.72c.37.2.6.6.6 1.02v1.48a1.66 1.66 0 0 1-2.18 1.6c-1.48-.5-3.87-1.47-5.42-3.01-1.54-1.55-2.52-3.94-3.02-5.41a1.66 1.66 0 0 1 1.61-2.19zM12.79 6.12a4.4 4.4 0 0 1 4.89 3.26q.21.85.08 1.72a.58.58 0 0 1-1.15-.18 3.23 3.23 0 0 0-2.39-3.58q-.62-.16-1.26-.06a.58.58 0 0 1-.17-1.16" }), /* @__PURE__ */ React.createElement("path", { fill: "#fff", d: "M12.9 8.2a2.33 2.33 0 0 1 2.65 2.66.58.58 0 1 1-1.15-.17 1.16 1.16 0 0 0-1.33-1.33.58.58 0 0 1-.17-1.15" }));
4
+ const PhoneRadiusColored = (props, ref) => /* @__PURE__ */ React.createElement(ShulexIcon, { ...props, ref, Icon: InnerSvg, colored: true });
5
+ const RefIcon = React.forwardRef(PhoneRadiusColored);
6
+ if (process.env.NODE_ENV !== "production") {
7
+ RefIcon.displayName = "PhoneRadiusColored";
8
+ }
9
+ export default RefIcon;
@@ -0,0 +1,4 @@
1
+ import { ShulexIconProps } from '../components/ShulexIcon';
2
+ import * as React from "react";
3
+ declare const RefIcon: React.ForwardRefExoticComponent<Omit<ShulexIconProps, "ref"> & React.RefAttributes<HTMLSpanElement>>;
4
+ 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 14 14", ...props }, /* @__PURE__ */ React.createElement("path", { fillRule: "evenodd", d: "M9.33 1.17c.33 0 .59.26.59.58v11.08c0 .33-.26.59-.59.59h-3.5a.6.6 0 0 1-.58-.59V5.25H1.17a.6.6 0 0 1-.59-.58V3.5l.01-.08q.05-.32.33-.45l3.8-1.75.05-.02.19-.03zm-7.58 2.7v.21h4.08c.33 0 .59.26.59.59v7.58h2.33V2.33H5.09zM12.83 1.17c.33 0 .59.26.59.58v2.92c0 .32-.26.58-.59.58h-1.75a.6.6 0 0 1-.58-.58V1.75c0-.32.26-.58.58-.58zm-1.16 2.91h.58V2.33h-.58z", clipRule: "evenodd" }));
4
+ const SkillOutlined = (props, ref) => /* @__PURE__ */ React.createElement(ShulexIcon, { ...props, ref, Icon: InnerSvg, colored: false });
5
+ const RefIcon = React.forwardRef(SkillOutlined);
6
+ if (process.env.NODE_ENV !== "production") {
7
+ RefIcon.displayName = "SkillOutlined";
8
+ }
9
+ export default RefIcon;
@@ -0,0 +1,4 @@
1
+ import { ShulexIconProps } from '../components/ShulexIcon';
2
+ import * as React from "react";
3
+ declare const RefIcon: React.ForwardRefExoticComponent<Omit<ShulexIconProps, "ref"> & React.RefAttributes<HTMLSpanElement>>;
4
+ 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;
@@ -0,0 +1,4 @@
1
+ import { ShulexIconProps } from '../components/ShulexIcon';
2
+ import * as React from "react";
3
+ declare const RefIcon: React.ForwardRefExoticComponent<Omit<ShulexIconProps, "ref"> & React.RefAttributes<HTMLSpanElement>>;
4
+ 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", { fillRule: "evenodd", d: "M9.67 1.67c.73 0 1.33.6 1.33 1.33v.67h2.67c.73 0 1.33.6 1.33 1.33v2.67c0 .62-.43 1.14-1 1.29v3.7c0 .93-.75 1.67-1.67 1.67H3.67c-.92 0-1.67-.74-1.67-1.66V8.96c-.57-.15-1-.67-1-1.3V5c0-.74.6-1.33 1.33-1.33H5V3c0-.74.6-1.33 1.33-1.33zm-6.34 11c0 .18.15.33.34.33h8.66c.19 0 .34-.15.34-.33V9h-1v.67a.67.67 0 0 1-1.34 0V9H5.67v.67a.67.67 0 0 1-1.34 0V9h-1zm-1-5h2a.67.67 0 0 1 1.34 0h4.66a.67.67 0 0 1 1.34 0h2V5H2.33zm4-4h3.34V3H6.33z", clipRule: "evenodd" }));
4
+ const ToolsOutlined = (props, ref) => /* @__PURE__ */ React.createElement(ShulexIcon, { ...props, ref, Icon: InnerSvg, colored: false });
5
+ const RefIcon = React.forwardRef(ToolsOutlined);
6
+ if (process.env.NODE_ENV !== "production") {
7
+ RefIcon.displayName = "ToolsOutlined";
8
+ }
9
+ export default RefIcon;
@@ -82,6 +82,7 @@ export { default as EllipsisOutlined } from './EllipsisOutlined';
82
82
  export { default as EmailCircleColored } from './EmailCircleColored';
83
83
  export { default as EmailColored } from './EmailColored';
84
84
  export { default as EmailFilled } from './EmailFilled';
85
+ export { default as EmailRadiusColored } from './EmailRadiusColored';
85
86
  export { default as EnterOutlined } from './EnterOutlined';
86
87
  export { default as EnvelopeOutlined } from './EnvelopeOutlined';
87
88
  export { default as ExclamationCircleFilled } from './ExclamationCircleFilled';
@@ -116,6 +117,7 @@ export { default as FreshdeskLogoColored } from './FreshdeskLogoColored';
116
117
  export { default as GenerationProcessOutlined } from './GenerationProcessOutlined';
117
118
  export { default as GmailLogoColored } from './GmailLogoColored';
118
119
  export { default as GoogleLogoColored } from './GoogleLogoColored';
120
+ export { default as HelpCricleOutlined } from './HelpCricleOutlined';
119
121
  export { default as HistoryOutlined } from './HistoryOutlined';
120
122
  export { default as HolderOutlined } from './HolderOutlined';
121
123
  export { default as IdeaFilled } from './IdeaFilled';
@@ -134,6 +136,7 @@ export { default as KnowledgeOutlined } from './KnowledgeOutlined';
134
136
  export { default as LanguageOutlined } from './LanguageOutlined';
135
137
  export { default as LayoutFilled } from './LayoutFilled';
136
138
  export { default as LeftOutlined } from './LeftOutlined';
139
+ export { default as LightningFilled } from './LightningFilled';
137
140
  export { default as LikeOutlined } from './LikeOutlined';
138
141
  export { default as LineLogoColored } from './LineLogoColored';
139
142
  export { default as LineLogoFilled } from './LineLogoFilled';
@@ -172,6 +175,7 @@ export { default as PauseCircleOutlined } from './PauseCircleOutlined';
172
175
  export { default as PauseOutlined } from './PauseOutlined';
173
176
  export { default as PeopleOutlined } from './PeopleOutlined';
174
177
  export { default as PhoneOutlined } from './PhoneOutlined';
178
+ export { default as PhoneRadiusColored } from './PhoneRadiusColored';
175
179
  export { default as PinFilled } from './PinFilled';
176
180
  export { default as PinOutlined } from './PinOutlined';
177
181
  export { default as PlatformOutlined } from './PlatformOutlined';
@@ -208,6 +212,7 @@ export { default as ShoppingFilled } from './ShoppingFilled';
208
212
  export { default as ShoppingOutlined } from './ShoppingOutlined';
209
213
  export { default as ShrinkOutlined } from './ShrinkOutlined';
210
214
  export { default as ShulexLogoColored } from './ShulexLogoColored';
215
+ export { default as SkillOutlined } from './SkillOutlined';
211
216
  export { default as SlackLogoColored } from './SlackLogoColored';
212
217
  export { default as SleepClockFilled } from './SleepClockFilled';
213
218
  export { default as SmallCloseOutlined } from './SmallCloseOutlined';
@@ -220,6 +225,7 @@ export { default as SortAscOutlined } from './SortAscOutlined';
220
225
  export { default as SortDescOutlined } from './SortDescOutlined';
221
226
  export { default as SortOutlined } from './SortOutlined';
222
227
  export { default as StarFilled } from './StarFilled';
228
+ export { default as StarPurpleColored } from './StarPurpleColored';
223
229
  export { default as StoreFilled } from './StoreFilled';
224
230
  export { default as StoreOutlined } from './StoreOutlined';
225
231
  export { default as SwapOutlined } from './SwapOutlined';
@@ -233,6 +239,7 @@ export { default as ThumbsdownFilled } from './ThumbsdownFilled';
233
239
  export { default as ThumbsdownOutlined } from './ThumbsdownOutlined';
234
240
  export { default as ThumbsupFilled } from './ThumbsupFilled';
235
241
  export { default as ThumbsupOutlined } from './ThumbsupOutlined';
242
+ export { default as ToolsOutlined } from './ToolsOutlined';
236
243
  export { default as TransferFilled } from './TransferFilled';
237
244
  export { default as TransferOutlined } from './TransferOutlined';
238
245
  export { default as TranslationOutlined } from './TranslationOutlined';
@@ -82,6 +82,7 @@ export { default as EllipsisOutlined } from "./EllipsisOutlined.mjs";
82
82
  export { default as EmailCircleColored } from "./EmailCircleColored.mjs";
83
83
  export { default as EmailColored } from "./EmailColored.mjs";
84
84
  export { default as EmailFilled } from "./EmailFilled.mjs";
85
+ export { default as EmailRadiusColored } from "./EmailRadiusColored.mjs";
85
86
  export { default as EnterOutlined } from "./EnterOutlined.mjs";
86
87
  export { default as EnvelopeOutlined } from "./EnvelopeOutlined.mjs";
87
88
  export { default as ExclamationCircleFilled } from "./ExclamationCircleFilled.mjs";
@@ -116,6 +117,7 @@ export { default as FreshdeskLogoColored } from "./FreshdeskLogoColored.mjs";
116
117
  export { default as GenerationProcessOutlined } from "./GenerationProcessOutlined.mjs";
117
118
  export { default as GmailLogoColored } from "./GmailLogoColored.mjs";
118
119
  export { default as GoogleLogoColored } from "./GoogleLogoColored.mjs";
120
+ export { default as HelpCricleOutlined } from "./HelpCricleOutlined.mjs";
119
121
  export { default as HistoryOutlined } from "./HistoryOutlined.mjs";
120
122
  export { default as HolderOutlined } from "./HolderOutlined.mjs";
121
123
  export { default as IdeaFilled } from "./IdeaFilled.mjs";
@@ -134,6 +136,7 @@ export { default as KnowledgeOutlined } from "./KnowledgeOutlined.mjs";
134
136
  export { default as LanguageOutlined } from "./LanguageOutlined.mjs";
135
137
  export { default as LayoutFilled } from "./LayoutFilled.mjs";
136
138
  export { default as LeftOutlined } from "./LeftOutlined.mjs";
139
+ export { default as LightningFilled } from "./LightningFilled.mjs";
137
140
  export { default as LikeOutlined } from "./LikeOutlined.mjs";
138
141
  export { default as LineLogoColored } from "./LineLogoColored.mjs";
139
142
  export { default as LineLogoFilled } from "./LineLogoFilled.mjs";
@@ -172,6 +175,7 @@ export { default as PauseCircleOutlined } from "./PauseCircleOutlined.mjs";
172
175
  export { default as PauseOutlined } from "./PauseOutlined.mjs";
173
176
  export { default as PeopleOutlined } from "./PeopleOutlined.mjs";
174
177
  export { default as PhoneOutlined } from "./PhoneOutlined.mjs";
178
+ export { default as PhoneRadiusColored } from "./PhoneRadiusColored.mjs";
175
179
  export { default as PinFilled } from "./PinFilled.mjs";
176
180
  export { default as PinOutlined } from "./PinOutlined.mjs";
177
181
  export { default as PlatformOutlined } from "./PlatformOutlined.mjs";
@@ -208,6 +212,7 @@ export { default as ShoppingFilled } from "./ShoppingFilled.mjs";
208
212
  export { default as ShoppingOutlined } from "./ShoppingOutlined.mjs";
209
213
  export { default as ShrinkOutlined } from "./ShrinkOutlined.mjs";
210
214
  export { default as ShulexLogoColored } from "./ShulexLogoColored.mjs";
215
+ export { default as SkillOutlined } from "./SkillOutlined.mjs";
211
216
  export { default as SlackLogoColored } from "./SlackLogoColored.mjs";
212
217
  export { default as SleepClockFilled } from "./SleepClockFilled.mjs";
213
218
  export { default as SmallCloseOutlined } from "./SmallCloseOutlined.mjs";
@@ -220,6 +225,7 @@ export { default as SortAscOutlined } from "./SortAscOutlined.mjs";
220
225
  export { default as SortDescOutlined } from "./SortDescOutlined.mjs";
221
226
  export { default as SortOutlined } from "./SortOutlined.mjs";
222
227
  export { default as StarFilled } from "./StarFilled.mjs";
228
+ export { default as StarPurpleColored } from "./StarPurpleColored.mjs";
223
229
  export { default as StoreFilled } from "./StoreFilled.mjs";
224
230
  export { default as StoreOutlined } from "./StoreOutlined.mjs";
225
231
  export { default as SwapOutlined } from "./SwapOutlined.mjs";
@@ -233,6 +239,7 @@ export { default as ThumbsdownFilled } from "./ThumbsdownFilled.mjs";
233
239
  export { default as ThumbsdownOutlined } from "./ThumbsdownOutlined.mjs";
234
240
  export { default as ThumbsupFilled } from "./ThumbsupFilled.mjs";
235
241
  export { default as ThumbsupOutlined } from "./ThumbsupOutlined.mjs";
242
+ export { default as ToolsOutlined } from "./ToolsOutlined.mjs";
236
243
  export { default as TransferFilled } from "./TransferFilled.mjs";
237
244
  export { default as TransferOutlined } from "./TransferOutlined.mjs";
238
245
  export { default as TranslationOutlined } from "./TranslationOutlined.mjs";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shulex/icons",
3
- "version": "1.0.15",
3
+ "version": "1.0.17",
4
4
  "private": false,
5
5
  "description": "Shulex 图标组件库",
6
6
  "license": "MIT",