@sensoro-design/icons 2.70.1 → 2.72.0

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/CHANGELOG.md CHANGED
@@ -3,6 +3,28 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [2.72.0](https://github.com/sensoro-design/sensoro-design-icons/compare/v2.71.0...v2.72.0) (2024-10-15)
7
+
8
+
9
+ ### Features
10
+
11
+ * add ComputerOutlined ([3d86d60](https://github.com/sensoro-design/sensoro-design-icons/commit/3d86d607a93b5fdfc4ff4bf5c125da7ee66b2677))
12
+
13
+
14
+
15
+
16
+
17
+ # [2.71.0](https://github.com/sensoro-design/sensoro-design-icons/compare/v2.70.1...v2.71.0) (2024-09-18)
18
+
19
+
20
+ ### Features
21
+
22
+ * add OrbitOutlined ([a6d2156](https://github.com/sensoro-design/sensoro-design-icons/commit/a6d2156cdfb7fc07adcb25f28f1a7ed47ecf7d1f))
23
+
24
+
25
+
26
+
27
+
6
28
  ## [2.70.1](https://github.com/sensoro-design/sensoro-design-icons/compare/v2.70.0...v2.70.1) (2024-09-11)
7
29
 
8
30
  **Note:** Version bump only for package @sensoro-design/icons
@@ -0,0 +1,2 @@
1
+ // This index.ts file is generated automatically.
2
+ export { default } from './lib/icons/ComputerOutlined';
@@ -0,0 +1,16 @@
1
+ // This index.ts file is generated automatically.
2
+ 'use strict';
3
+
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+
8
+ exports.default = void 0;
9
+
10
+ var _ComputerOutlined = _interopRequireDefault(require('./es/icons/ComputerOutlined'));
11
+
12
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
13
+
14
+ var _default = _ComputerOutlined;
15
+ exports.default = _default;
16
+ module.exports = _default;
@@ -0,0 +1,2 @@
1
+ // This index.ts file is generated automatically.
2
+ export { default } from './lib/icons/OrbitOutlined';
@@ -0,0 +1,16 @@
1
+ // This index.ts file is generated automatically.
2
+ 'use strict';
3
+
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+
8
+ exports.default = void 0;
9
+
10
+ var _OrbitOutlined = _interopRequireDefault(require('./es/icons/OrbitOutlined'));
11
+
12
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
13
+
14
+ var _default = _OrbitOutlined;
15
+ exports.default = _default;
16
+ module.exports = _default;
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ import { SensoroIconProps } from '../components/SensoroIcon';
3
+ declare const RefIcon: React.ForwardRefExoticComponent<Omit<SensoroIconProps, 'ref'> & React.RefAttributes<HTMLSpanElement>>;
4
+ export default RefIcon;
@@ -0,0 +1,14 @@
1
+ import _extends from "@babel/runtime/helpers/esm/extends";
2
+ // This icon file is generated automatically.
3
+ import * as React from 'react';
4
+ import ComputerOutlinedSvg from '@sensoro-design/icons-svg/es/asn/ComputerOutlined';
5
+ import SensoroIcon from "../components/SensoroIcon";
6
+ var ComputerOutlined = function ComputerOutlined(props, ref) {
7
+ return /*#__PURE__*/React.createElement(SensoroIcon, _extends({}, props, {
8
+ ref: ref,
9
+ icon: ComputerOutlinedSvg
10
+ }));
11
+ };
12
+ var RefIcon = /*#__PURE__*/React.forwardRef(ComputerOutlined);
13
+ RefIcon.displayName = 'ComputerOutlined';
14
+ export default RefIcon;
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ import { SensoroIconProps } from '../components/SensoroIcon';
3
+ declare const RefIcon: React.ForwardRefExoticComponent<Omit<SensoroIconProps, 'ref'> & React.RefAttributes<HTMLSpanElement>>;
4
+ export default RefIcon;
@@ -0,0 +1,14 @@
1
+ import _extends from "@babel/runtime/helpers/esm/extends";
2
+ // This icon file is generated automatically.
3
+ import * as React from 'react';
4
+ import OrbitOutlinedSvg from '@sensoro-design/icons-svg/es/asn/OrbitOutlined';
5
+ import SensoroIcon from "../components/SensoroIcon";
6
+ var OrbitOutlined = function OrbitOutlined(props, ref) {
7
+ return /*#__PURE__*/React.createElement(SensoroIcon, _extends({}, props, {
8
+ ref: ref,
9
+ icon: OrbitOutlinedSvg
10
+ }));
11
+ };
12
+ var RefIcon = /*#__PURE__*/React.forwardRef(OrbitOutlined);
13
+ RefIcon.displayName = 'OrbitOutlined';
14
+ export default RefIcon;
@@ -169,6 +169,7 @@ export { default as CompareOutlined } from './CompareOutlined';
169
169
  export { default as CompassOutlined } from './CompassOutlined';
170
170
  export { default as CompassPurely } from './CompassPurely';
171
171
  export { default as CompressOutlined } from './CompressOutlined';
172
+ export { default as ComputerOutlined } from './ComputerOutlined';
172
173
  export { default as ComputingCenterPurely } from './ComputingCenterPurely';
173
174
  export { default as ContinuityDetectionOutlined } from './ContinuityDetectionOutlined';
174
175
  export { default as ControllerOutlined } from './ControllerOutlined';
@@ -640,6 +641,7 @@ export { default as OfflineOutlined } from './OfflineOutlined';
640
641
  export { default as OneToOneOutlined } from './OneToOneOutlined';
641
642
  export { default as OperateFilled } from './OperateFilled';
642
643
  export { default as OperateOutlined } from './OperateOutlined';
644
+ export { default as OrbitOutlined } from './OrbitOutlined';
643
645
  export { default as OrbitalFlightOutlined } from './OrbitalFlightOutlined';
644
646
  export { default as OrderListFilled } from './OrderListFilled';
645
647
  export { default as OrderedListOutlined } from './OrderedListOutlined';
package/es/icons/index.js CHANGED
@@ -170,6 +170,7 @@ export { default as CompareOutlined } from "./CompareOutlined";
170
170
  export { default as CompassOutlined } from "./CompassOutlined";
171
171
  export { default as CompassPurely } from "./CompassPurely";
172
172
  export { default as CompressOutlined } from "./CompressOutlined";
173
+ export { default as ComputerOutlined } from "./ComputerOutlined";
173
174
  export { default as ComputingCenterPurely } from "./ComputingCenterPurely";
174
175
  export { default as ContinuityDetectionOutlined } from "./ContinuityDetectionOutlined";
175
176
  export { default as ControllerOutlined } from "./ControllerOutlined";
@@ -641,6 +642,7 @@ export { default as OfflineOutlined } from "./OfflineOutlined";
641
642
  export { default as OneToOneOutlined } from "./OneToOneOutlined";
642
643
  export { default as OperateFilled } from "./OperateFilled";
643
644
  export { default as OperateOutlined } from "./OperateOutlined";
645
+ export { default as OrbitOutlined } from "./OrbitOutlined";
644
646
  export { default as OrbitalFlightOutlined } from "./OrbitalFlightOutlined";
645
647
  export { default as OrderListFilled } from "./OrderListFilled";
646
648
  export { default as OrderedListOutlined } from "./OrderedListOutlined";
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ import { SensoroIconProps } from '../components/SensoroIcon';
3
+ declare const RefIcon: React.ForwardRefExoticComponent<Omit<SensoroIconProps, 'ref'> & React.RefAttributes<HTMLSpanElement>>;
4
+ export default RefIcon;
@@ -0,0 +1,41 @@
1
+ var __create = Object.create;
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __getProtoOf = Object.getPrototypeOf;
6
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
7
+ var __export = (target, all) => {
8
+ for (var name in all)
9
+ __defProp(target, name, { get: all[name], enumerable: true });
10
+ };
11
+ var __copyProps = (to, from, except, desc) => {
12
+ if (from && typeof from === "object" || typeof from === "function") {
13
+ for (let key of __getOwnPropNames(from))
14
+ if (!__hasOwnProp.call(to, key) && key !== except)
15
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
16
+ }
17
+ return to;
18
+ };
19
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
20
+ // If the importer is in node compatibility mode or this is not an ESM
21
+ // file that has been converted to a CommonJS file using a Babel-
22
+ // compatible transform (i.e. "__esModule" has not been set), then set
23
+ // "default" to the CommonJS "module.exports" for node compatibility.
24
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
25
+ mod
26
+ ));
27
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
28
+
29
+ // src/icons/ComputerOutlined.tsx
30
+ var ComputerOutlined_exports = {};
31
+ __export(ComputerOutlined_exports, {
32
+ default: () => ComputerOutlined_default
33
+ });
34
+ module.exports = __toCommonJS(ComputerOutlined_exports);
35
+ var React = __toESM(require("react"));
36
+ var import_ComputerOutlined = __toESM(require("@sensoro-design/icons-svg/es/asn/ComputerOutlined"));
37
+ var import_SensoroIcon = __toESM(require("../components/SensoroIcon"));
38
+ var ComputerOutlined = (props, ref) => /* @__PURE__ */ React.createElement(import_SensoroIcon.default, { ...props, ref, icon: import_ComputerOutlined.default });
39
+ var RefIcon = React.forwardRef(ComputerOutlined);
40
+ RefIcon.displayName = "ComputerOutlined";
41
+ var ComputerOutlined_default = RefIcon;
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ import { SensoroIconProps } from '../components/SensoroIcon';
3
+ declare const RefIcon: React.ForwardRefExoticComponent<Omit<SensoroIconProps, 'ref'> & React.RefAttributes<HTMLSpanElement>>;
4
+ export default RefIcon;
@@ -0,0 +1,41 @@
1
+ var __create = Object.create;
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __getProtoOf = Object.getPrototypeOf;
6
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
7
+ var __export = (target, all) => {
8
+ for (var name in all)
9
+ __defProp(target, name, { get: all[name], enumerable: true });
10
+ };
11
+ var __copyProps = (to, from, except, desc) => {
12
+ if (from && typeof from === "object" || typeof from === "function") {
13
+ for (let key of __getOwnPropNames(from))
14
+ if (!__hasOwnProp.call(to, key) && key !== except)
15
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
16
+ }
17
+ return to;
18
+ };
19
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
20
+ // If the importer is in node compatibility mode or this is not an ESM
21
+ // file that has been converted to a CommonJS file using a Babel-
22
+ // compatible transform (i.e. "__esModule" has not been set), then set
23
+ // "default" to the CommonJS "module.exports" for node compatibility.
24
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
25
+ mod
26
+ ));
27
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
28
+
29
+ // src/icons/OrbitOutlined.tsx
30
+ var OrbitOutlined_exports = {};
31
+ __export(OrbitOutlined_exports, {
32
+ default: () => OrbitOutlined_default
33
+ });
34
+ module.exports = __toCommonJS(OrbitOutlined_exports);
35
+ var React = __toESM(require("react"));
36
+ var import_OrbitOutlined = __toESM(require("@sensoro-design/icons-svg/es/asn/OrbitOutlined"));
37
+ var import_SensoroIcon = __toESM(require("../components/SensoroIcon"));
38
+ var OrbitOutlined = (props, ref) => /* @__PURE__ */ React.createElement(import_SensoroIcon.default, { ...props, ref, icon: import_OrbitOutlined.default });
39
+ var RefIcon = React.forwardRef(OrbitOutlined);
40
+ RefIcon.displayName = "OrbitOutlined";
41
+ var OrbitOutlined_default = RefIcon;
@@ -169,6 +169,7 @@ export { default as CompareOutlined } from './CompareOutlined';
169
169
  export { default as CompassOutlined } from './CompassOutlined';
170
170
  export { default as CompassPurely } from './CompassPurely';
171
171
  export { default as CompressOutlined } from './CompressOutlined';
172
+ export { default as ComputerOutlined } from './ComputerOutlined';
172
173
  export { default as ComputingCenterPurely } from './ComputingCenterPurely';
173
174
  export { default as ContinuityDetectionOutlined } from './ContinuityDetectionOutlined';
174
175
  export { default as ControllerOutlined } from './ControllerOutlined';
@@ -640,6 +641,7 @@ export { default as OfflineOutlined } from './OfflineOutlined';
640
641
  export { default as OneToOneOutlined } from './OneToOneOutlined';
641
642
  export { default as OperateFilled } from './OperateFilled';
642
643
  export { default as OperateOutlined } from './OperateOutlined';
644
+ export { default as OrbitOutlined } from './OrbitOutlined';
643
645
  export { default as OrbitalFlightOutlined } from './OrbitalFlightOutlined';
644
646
  export { default as OrderListFilled } from './OrderListFilled';
645
647
  export { default as OrderedListOutlined } from './OrderedListOutlined';
@@ -200,6 +200,7 @@ __export(icons_exports, {
200
200
  CompassOutlined: () => import_CompassOutlined.default,
201
201
  CompassPurely: () => import_CompassPurely.default,
202
202
  CompressOutlined: () => import_CompressOutlined.default,
203
+ ComputerOutlined: () => import_ComputerOutlined.default,
203
204
  ComputingCenterPurely: () => import_ComputingCenterPurely.default,
204
205
  ContinuityDetectionOutlined: () => import_ContinuityDetectionOutlined.default,
205
206
  ControllerOutlined: () => import_ControllerOutlined.default,
@@ -671,6 +672,7 @@ __export(icons_exports, {
671
672
  OneToOneOutlined: () => import_OneToOneOutlined.default,
672
673
  OperateFilled: () => import_OperateFilled.default,
673
674
  OperateOutlined: () => import_OperateOutlined.default,
675
+ OrbitOutlined: () => import_OrbitOutlined.default,
674
676
  OrbitalFlightOutlined: () => import_OrbitalFlightOutlined.default,
675
677
  OrderListFilled: () => import_OrderListFilled.default,
676
678
  OrderedListOutlined: () => import_OrderedListOutlined.default,
@@ -1228,6 +1230,7 @@ var import_CompareOutlined = __toESM(require("./CompareOutlined"));
1228
1230
  var import_CompassOutlined = __toESM(require("./CompassOutlined"));
1229
1231
  var import_CompassPurely = __toESM(require("./CompassPurely"));
1230
1232
  var import_CompressOutlined = __toESM(require("./CompressOutlined"));
1233
+ var import_ComputerOutlined = __toESM(require("./ComputerOutlined"));
1231
1234
  var import_ComputingCenterPurely = __toESM(require("./ComputingCenterPurely"));
1232
1235
  var import_ContinuityDetectionOutlined = __toESM(require("./ContinuityDetectionOutlined"));
1233
1236
  var import_ControllerOutlined = __toESM(require("./ControllerOutlined"));
@@ -1699,6 +1702,7 @@ var import_OfflineOutlined = __toESM(require("./OfflineOutlined"));
1699
1702
  var import_OneToOneOutlined = __toESM(require("./OneToOneOutlined"));
1700
1703
  var import_OperateFilled = __toESM(require("./OperateFilled"));
1701
1704
  var import_OperateOutlined = __toESM(require("./OperateOutlined"));
1705
+ var import_OrbitOutlined = __toESM(require("./OrbitOutlined"));
1702
1706
  var import_OrbitalFlightOutlined = __toESM(require("./OrbitalFlightOutlined"));
1703
1707
  var import_OrderListFilled = __toESM(require("./OrderListFilled"));
1704
1708
  var import_OrderedListOutlined = __toESM(require("./OrderedListOutlined"));
@@ -2256,6 +2260,7 @@ var import_ZoomPlusOutlined = __toESM(require("./ZoomPlusOutlined"));
2256
2260
  CompassOutlined,
2257
2261
  CompassPurely,
2258
2262
  CompressOutlined,
2263
+ ComputerOutlined,
2259
2264
  ComputingCenterPurely,
2260
2265
  ContinuityDetectionOutlined,
2261
2266
  ControllerOutlined,
@@ -2727,6 +2732,7 @@ var import_ZoomPlusOutlined = __toESM(require("./ZoomPlusOutlined"));
2727
2732
  OneToOneOutlined,
2728
2733
  OperateFilled,
2729
2734
  OperateOutlined,
2735
+ OrbitOutlined,
2730
2736
  OrbitalFlightOutlined,
2731
2737
  OrderListFilled,
2732
2738
  OrderedListOutlined,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sensoro-design/icons",
3
- "version": "2.70.1",
3
+ "version": "2.72.0",
4
4
  "description": "Abstract nodes for sensoro design icons.",
5
5
  "main": "lib/index.js",
6
6
  "module": "es/index.js",
@@ -27,7 +27,7 @@
27
27
  "@babel/runtime": "^7.11.2",
28
28
  "@pansy/classnames": "^1.0.1",
29
29
  "rc-util": "^5.19.3",
30
- "@sensoro-design/icons-svg": "2.70.1"
30
+ "@sensoro-design/icons-svg": "2.72.0"
31
31
  },
32
32
  "publishConfig": {
33
33
  "access": "public"