@shulex/icons 1.0.5 → 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 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", { viewBox: "0 0 18 18", ...props }, /* @__PURE__ */ React.createElement("path", { fillRule: "evenodd", d: "M5.4 2.55c.54 0 1.04.3 1.3.77l.92 1.65c.24.44.25.96.03 1.4l-.76 1.51a4.4 4.4 0 0 0 2.42 2.69q.24.1.42.15l1.5-.76a1.5 1.5 0 0 1 1.4.03l1.67.92c.47.27.77.77.77 1.31v1.9a2.14 2.14 0 0 1-2.81 2.08c-1.9-.64-4.97-1.9-6.96-3.89-1.98-1.98-3.24-5.05-3.88-6.95a2.14 2.14 0 0 1 2.07-2.81zm-1.91 1.5c-.5 0-.78.44-.65.83.63 1.87 1.8 4.65 3.52 6.37 1.73 1.73 4.51 2.9 6.38 3.53.39.13.83-.15.83-.65v-1.9l-1.66-.93-1.77.89a1 1 0 0 1-.35.08l-.12-.02h-.03l-.06-.02a4 4 0 0 1-.86-.28 5.85 5.85 0 0 1-3.36-3.97v-.03a.8.8 0 0 1 .06-.48l.89-1.77-.92-1.65z", clipRule: "evenodd" }), /* @__PURE__ */ React.createElement("path", { d: "M10.01 1.44a5.65 5.65 0 0 1 6.3 4.2c.17.71.2 1.47.1 2.2a.75.75 0 0 1-1.48-.22A4.15 4.15 0 0 0 11.85 3a4 4 0 0 0-1.62-.07.75.75 0 0 1-.22-1.49" }), /* @__PURE__ */ React.createElement("path", { d: "M10.15 4.13a3 3 0 0 1 3.41 3.4.75.75 0 1 1-1.48-.21 1.5 1.5 0 0 0-1.7-1.71.75.75 0 0 1-.23-1.48" }));
4
+ const CallOutlined = (props, ref) => /* @__PURE__ */ React.createElement(ShulexIcon, { ...props, ref, Icon: InnerSvg, colored: false });
5
+ const RefIcon = React.forwardRef(CallOutlined);
6
+ if (process.env.NODE_ENV !== "production") {
7
+ RefIcon.displayName = "CallOutlined";
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 18 18", ...props }, /* @__PURE__ */ React.createElement("path", { d: "M11.63 11.63a.75.75 0 0 1 0 1.5H6.37a.75.75 0 0 1 0-1.5zM5.63 8.25a.94.94 0 1 1 0 1.88.94.94 0 0 1 0-1.88M9 8.25a.94.94 0 1 1 0 1.88.94.94 0 0 1 0-1.88M12.38 8.25a.94.94 0 1 1 0 1.87.94.94 0 0 1 0-1.87M5.63 5.25a.94.94 0 1 1 0 1.88.94.94 0 0 1 0-1.88M9 5.25a.94.94 0 1 1 0 1.88.94.94 0 0 1 0-1.88M12.38 5.25a.94.94 0 1 1 0 1.87.94.94 0 0 1 0-1.87" }), /* @__PURE__ */ React.createElement("path", { fillRule: "evenodd", d: "M9 .75a8.25 8.25 0 1 1 0 16.5A8.25 8.25 0 0 1 9 .75m0 1.5a6.75 6.75 0 1 0 0 13.5 6.75 6.75 0 0 0 0-13.5", clipRule: "evenodd" }));
4
+ const CodeOutlined = (props, ref) => /* @__PURE__ */ React.createElement(ShulexIcon, { ...props, ref, Icon: InnerSvg, colored: false });
5
+ const RefIcon = React.forwardRef(CodeOutlined);
6
+ if (process.env.NODE_ENV !== "production") {
7
+ RefIcon.displayName = "CodeOutlined";
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 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 18 18", ...props }, /* @__PURE__ */ React.createElement("path", { d: "M14.63 7.88c.4 0 .74.33.74.75a6.37 6.37 0 0 1-5.62 6.32v1.55a.75.75 0 0 1-1.5 0v-1.55a6.37 6.37 0 0 1-5.62-6.32.75.75 0 0 1 1.5 0 4.87 4.87 0 1 0 9.75 0c0-.42.33-.76.74-.76" }), /* @__PURE__ */ React.createElement("path", { fillRule: "evenodd", d: "M9 .75a3.37 3.37 0 0 1 3.38 3.38V9a3.37 3.37 0 1 1-6.76 0V4.13A3.4 3.4 0 0 1 9 .75m0 1.5c-1.04 0-1.87.84-1.87 1.88V9a1.88 1.88 0 0 0 3.75 0V4.13c0-1.04-.84-1.88-1.88-1.88", clipRule: "evenodd" }));
4
+ const VoiceOutlined = (props, ref) => /* @__PURE__ */ React.createElement(ShulexIcon, { ...props, ref, Icon: InnerSvg, colored: false });
5
+ const RefIcon = React.forwardRef(VoiceOutlined);
6
+ if (process.env.NODE_ENV !== "production") {
7
+ RefIcon.displayName = "VoiceOutlined";
8
+ }
9
+ export default RefIcon;
@@ -27,6 +27,7 @@ export { default as BoxOutlined } from './BoxOutlined';
27
27
  export { default as BrandOutlined } from './BrandOutlined';
28
28
  export { default as CalendarFilled } from './CalendarFilled';
29
29
  export { default as CalendarOutlined } from './CalendarOutlined';
30
+ export { default as CallOutlined } from './CallOutlined';
30
31
  export { default as CarOutlined } from './CarOutlined';
31
32
  export { default as CaretDownOutlined } from './CaretDownOutlined';
32
33
  export { default as CaretLeftOutlined } from './CaretLeftOutlined';
@@ -43,6 +44,7 @@ export { default as ClockOutlined } from './ClockOutlined';
43
44
  export { default as CloseCircleFilled } from './CloseCircleFilled';
44
45
  export { default as CloseCircleOutlined } from './CloseCircleOutlined';
45
46
  export { default as CloseOutlined } from './CloseOutlined';
47
+ export { default as CodeOutlined } from './CodeOutlined';
46
48
  export { default as ColorsOutlined } from './ColorsOutlined';
47
49
  export { default as CommentOutlined } from './CommentOutlined';
48
50
  export { default as ConnectOutlined } from './ConnectOutlined';
@@ -114,6 +116,7 @@ export { default as FreshdeskLogoColored } from './FreshdeskLogoColored';
114
116
  export { default as GenerationProcessOutlined } from './GenerationProcessOutlined';
115
117
  export { default as GmailLogoColored } from './GmailLogoColored';
116
118
  export { default as GoogleLogoColored } from './GoogleLogoColored';
119
+ export { default as HelpCricleOutlined } from './HelpCricleOutlined';
117
120
  export { default as HistoryOutlined } from './HistoryOutlined';
118
121
  export { default as HolderOutlined } from './HolderOutlined';
119
122
  export { default as IdeaFilled } from './IdeaFilled';
@@ -132,6 +135,7 @@ export { default as KnowledgeOutlined } from './KnowledgeOutlined';
132
135
  export { default as LanguageOutlined } from './LanguageOutlined';
133
136
  export { default as LayoutFilled } from './LayoutFilled';
134
137
  export { default as LeftOutlined } from './LeftOutlined';
138
+ export { default as LightningFilled } from './LightningFilled';
135
139
  export { default as LikeOutlined } from './LikeOutlined';
136
140
  export { default as LineLogoColored } from './LineLogoColored';
137
141
  export { default as LineLogoFilled } from './LineLogoFilled';
@@ -218,6 +222,7 @@ export { default as SortAscOutlined } from './SortAscOutlined';
218
222
  export { default as SortDescOutlined } from './SortDescOutlined';
219
223
  export { default as SortOutlined } from './SortOutlined';
220
224
  export { default as StarFilled } from './StarFilled';
225
+ export { default as StarPurpleColored } from './StarPurpleColored';
221
226
  export { default as StoreFilled } from './StoreFilled';
222
227
  export { default as StoreOutlined } from './StoreOutlined';
223
228
  export { default as SwapOutlined } from './SwapOutlined';
@@ -247,6 +252,7 @@ export { default as UserFilled } from './UserFilled';
247
252
  export { default as UserOutlined } from './UserOutlined';
248
253
  export { default as ViewOutlined } from './ViewOutlined';
249
254
  export { default as ViewSimpleOutlined } from './ViewSimpleOutlined';
255
+ export { default as VoiceOutlined } from './VoiceOutlined';
250
256
  export { default as WalmartLogoColored } from './WalmartLogoColored';
251
257
  export { default as WalmartLogoFilled } from './WalmartLogoFilled';
252
258
  export { default as WarningFilled } from './WarningFilled';
@@ -27,6 +27,7 @@ export { default as BoxOutlined } from "./BoxOutlined.mjs";
27
27
  export { default as BrandOutlined } from "./BrandOutlined.mjs";
28
28
  export { default as CalendarFilled } from "./CalendarFilled.mjs";
29
29
  export { default as CalendarOutlined } from "./CalendarOutlined.mjs";
30
+ export { default as CallOutlined } from "./CallOutlined.mjs";
30
31
  export { default as CarOutlined } from "./CarOutlined.mjs";
31
32
  export { default as CaretDownOutlined } from "./CaretDownOutlined.mjs";
32
33
  export { default as CaretLeftOutlined } from "./CaretLeftOutlined.mjs";
@@ -43,6 +44,7 @@ export { default as ClockOutlined } from "./ClockOutlined.mjs";
43
44
  export { default as CloseCircleFilled } from "./CloseCircleFilled.mjs";
44
45
  export { default as CloseCircleOutlined } from "./CloseCircleOutlined.mjs";
45
46
  export { default as CloseOutlined } from "./CloseOutlined.mjs";
47
+ export { default as CodeOutlined } from "./CodeOutlined.mjs";
46
48
  export { default as ColorsOutlined } from "./ColorsOutlined.mjs";
47
49
  export { default as CommentOutlined } from "./CommentOutlined.mjs";
48
50
  export { default as ConnectOutlined } from "./ConnectOutlined.mjs";
@@ -114,6 +116,7 @@ export { default as FreshdeskLogoColored } from "./FreshdeskLogoColored.mjs";
114
116
  export { default as GenerationProcessOutlined } from "./GenerationProcessOutlined.mjs";
115
117
  export { default as GmailLogoColored } from "./GmailLogoColored.mjs";
116
118
  export { default as GoogleLogoColored } from "./GoogleLogoColored.mjs";
119
+ export { default as HelpCricleOutlined } from "./HelpCricleOutlined.mjs";
117
120
  export { default as HistoryOutlined } from "./HistoryOutlined.mjs";
118
121
  export { default as HolderOutlined } from "./HolderOutlined.mjs";
119
122
  export { default as IdeaFilled } from "./IdeaFilled.mjs";
@@ -132,6 +135,7 @@ export { default as KnowledgeOutlined } from "./KnowledgeOutlined.mjs";
132
135
  export { default as LanguageOutlined } from "./LanguageOutlined.mjs";
133
136
  export { default as LayoutFilled } from "./LayoutFilled.mjs";
134
137
  export { default as LeftOutlined } from "./LeftOutlined.mjs";
138
+ export { default as LightningFilled } from "./LightningFilled.mjs";
135
139
  export { default as LikeOutlined } from "./LikeOutlined.mjs";
136
140
  export { default as LineLogoColored } from "./LineLogoColored.mjs";
137
141
  export { default as LineLogoFilled } from "./LineLogoFilled.mjs";
@@ -218,6 +222,7 @@ export { default as SortAscOutlined } from "./SortAscOutlined.mjs";
218
222
  export { default as SortDescOutlined } from "./SortDescOutlined.mjs";
219
223
  export { default as SortOutlined } from "./SortOutlined.mjs";
220
224
  export { default as StarFilled } from "./StarFilled.mjs";
225
+ export { default as StarPurpleColored } from "./StarPurpleColored.mjs";
221
226
  export { default as StoreFilled } from "./StoreFilled.mjs";
222
227
  export { default as StoreOutlined } from "./StoreOutlined.mjs";
223
228
  export { default as SwapOutlined } from "./SwapOutlined.mjs";
@@ -247,6 +252,7 @@ export { default as UserFilled } from "./UserFilled.mjs";
247
252
  export { default as UserOutlined } from "./UserOutlined.mjs";
248
253
  export { default as ViewOutlined } from "./ViewOutlined.mjs";
249
254
  export { default as ViewSimpleOutlined } from "./ViewSimpleOutlined.mjs";
255
+ export { default as VoiceOutlined } from "./VoiceOutlined.mjs";
250
256
  export { default as WalmartLogoColored } from "./WalmartLogoColored.mjs";
251
257
  export { default as WalmartLogoFilled } from "./WalmartLogoFilled.mjs";
252
258
  export { default as WarningFilled } from "./WarningFilled.mjs";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shulex/icons",
3
- "version": "1.0.5",
3
+ "version": "1.0.16",
4
4
  "private": false,
5
5
  "description": "Shulex 图标组件库",
6
6
  "license": "MIT",