@sensoro-design/icons 2.84.0 → 2.86.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 +22 -0
- package/RollbackOutlined.d.ts +2 -0
- package/RollbackOutlined.js +16 -0
- package/ScatterPlotOutlined.d.ts +2 -0
- package/ScatterPlotOutlined.js +16 -0
- package/es/icons/RollbackOutlined.d.ts +4 -0
- package/es/icons/RollbackOutlined.js +14 -0
- package/es/icons/ScatterPlotOutlined.d.ts +4 -0
- package/es/icons/ScatterPlotOutlined.js +14 -0
- package/es/icons/index.d.ts +2 -0
- package/es/icons/index.js +2 -0
- package/lib/icons/RollbackOutlined.d.ts +4 -0
- package/lib/icons/RollbackOutlined.js +41 -0
- package/lib/icons/ScatterPlotOutlined.d.ts +4 -0
- package/lib/icons/ScatterPlotOutlined.js +41 -0
- package/lib/icons/index.d.ts +2 -0
- package/lib/icons/index.js +6 -0
- package/package.json +2 -2
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.86.0](https://github.com/sensoro-design/sensoro-design-icons/compare/v2.85.0...v2.86.0) (2025-04-16)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* add ScatterPlotOutlined ([f8f7b8f](https://github.com/sensoro-design/sensoro-design-icons/commit/f8f7b8f4f82c62e80ae47d9fe89f335a541b313d))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [2.85.0](https://github.com/sensoro-design/sensoro-design-icons/compare/v2.84.0...v2.85.0) (2025-04-10)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* add RollbackOutlined ([bafbe8c](https://github.com/sensoro-design/sensoro-design-icons/commit/bafbe8c7ab0cd5426ca7762f46dcfa92356e989c))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
6
28
|
# [2.84.0](https://github.com/sensoro-design/sensoro-design-icons/compare/v2.83.0...v2.84.0) (2025-04-08)
|
|
7
29
|
|
|
8
30
|
|
|
@@ -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 _RollbackOutlined = _interopRequireDefault(require('./es/icons/RollbackOutlined'));
|
|
11
|
+
|
|
12
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
|
|
13
|
+
|
|
14
|
+
var _default = _RollbackOutlined;
|
|
15
|
+
exports.default = _default;
|
|
16
|
+
module.exports = _default;
|
|
@@ -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 _ScatterPlotOutlined = _interopRequireDefault(require('./es/icons/ScatterPlotOutlined'));
|
|
11
|
+
|
|
12
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
|
|
13
|
+
|
|
14
|
+
var _default = _ScatterPlotOutlined;
|
|
15
|
+
exports.default = _default;
|
|
16
|
+
module.exports = _default;
|
|
@@ -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 RollbackOutlinedSvg from '@sensoro-design/icons-svg/es/asn/RollbackOutlined';
|
|
5
|
+
import SensoroIcon from "../components/SensoroIcon";
|
|
6
|
+
var RollbackOutlined = function RollbackOutlined(props, ref) {
|
|
7
|
+
return /*#__PURE__*/React.createElement(SensoroIcon, _extends({}, props, {
|
|
8
|
+
ref: ref,
|
|
9
|
+
icon: RollbackOutlinedSvg
|
|
10
|
+
}));
|
|
11
|
+
};
|
|
12
|
+
var RefIcon = /*#__PURE__*/React.forwardRef(RollbackOutlined);
|
|
13
|
+
RefIcon.displayName = 'RollbackOutlined';
|
|
14
|
+
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 ScatterPlotOutlinedSvg from '@sensoro-design/icons-svg/es/asn/ScatterPlotOutlined';
|
|
5
|
+
import SensoroIcon from "../components/SensoroIcon";
|
|
6
|
+
var ScatterPlotOutlined = function ScatterPlotOutlined(props, ref) {
|
|
7
|
+
return /*#__PURE__*/React.createElement(SensoroIcon, _extends({}, props, {
|
|
8
|
+
ref: ref,
|
|
9
|
+
icon: ScatterPlotOutlinedSvg
|
|
10
|
+
}));
|
|
11
|
+
};
|
|
12
|
+
var RefIcon = /*#__PURE__*/React.forwardRef(ScatterPlotOutlined);
|
|
13
|
+
RefIcon.displayName = 'ScatterPlotOutlined';
|
|
14
|
+
export default RefIcon;
|
package/es/icons/index.d.ts
CHANGED
|
@@ -791,6 +791,7 @@ export { default as RoadNetworkFilled } from './RoadNetworkFilled';
|
|
|
791
791
|
export { default as RoadOutlined } from './RoadOutlined';
|
|
792
792
|
export { default as RobotOutlined } from './RobotOutlined';
|
|
793
793
|
export { default as RocketOutlined } from './RocketOutlined';
|
|
794
|
+
export { default as RollbackOutlined } from './RollbackOutlined';
|
|
794
795
|
export { default as RoomFilled } from './RoomFilled';
|
|
795
796
|
export { default as RoomOutlined } from './RoomOutlined';
|
|
796
797
|
export { default as RotateLeftOutlined } from './RotateLeftOutlined';
|
|
@@ -818,6 +819,7 @@ export { default as SatelliteFilled } from './SatelliteFilled';
|
|
|
818
819
|
export { default as SatelliteOutlined } from './SatelliteOutlined';
|
|
819
820
|
export { default as SaveOutlined } from './SaveOutlined';
|
|
820
821
|
export { default as ScanCodeOutlined } from './ScanCodeOutlined';
|
|
822
|
+
export { default as ScatterPlotOutlined } from './ScatterPlotOutlined';
|
|
821
823
|
export { default as ScenicAreaFilled } from './ScenicAreaFilled';
|
|
822
824
|
export { default as ScenicAreaOutlined } from './ScenicAreaOutlined';
|
|
823
825
|
export { default as ScheduleOutlined } from './ScheduleOutlined';
|
package/es/icons/index.js
CHANGED
|
@@ -792,6 +792,7 @@ export { default as RoadNetworkFilled } from "./RoadNetworkFilled";
|
|
|
792
792
|
export { default as RoadOutlined } from "./RoadOutlined";
|
|
793
793
|
export { default as RobotOutlined } from "./RobotOutlined";
|
|
794
794
|
export { default as RocketOutlined } from "./RocketOutlined";
|
|
795
|
+
export { default as RollbackOutlined } from "./RollbackOutlined";
|
|
795
796
|
export { default as RoomFilled } from "./RoomFilled";
|
|
796
797
|
export { default as RoomOutlined } from "./RoomOutlined";
|
|
797
798
|
export { default as RotateLeftOutlined } from "./RotateLeftOutlined";
|
|
@@ -819,6 +820,7 @@ export { default as SatelliteFilled } from "./SatelliteFilled";
|
|
|
819
820
|
export { default as SatelliteOutlined } from "./SatelliteOutlined";
|
|
820
821
|
export { default as SaveOutlined } from "./SaveOutlined";
|
|
821
822
|
export { default as ScanCodeOutlined } from "./ScanCodeOutlined";
|
|
823
|
+
export { default as ScatterPlotOutlined } from "./ScatterPlotOutlined";
|
|
822
824
|
export { default as ScenicAreaFilled } from "./ScenicAreaFilled";
|
|
823
825
|
export { default as ScenicAreaOutlined } from "./ScenicAreaOutlined";
|
|
824
826
|
export { default as ScheduleOutlined } from "./ScheduleOutlined";
|
|
@@ -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/RollbackOutlined.tsx
|
|
30
|
+
var RollbackOutlined_exports = {};
|
|
31
|
+
__export(RollbackOutlined_exports, {
|
|
32
|
+
default: () => RollbackOutlined_default
|
|
33
|
+
});
|
|
34
|
+
module.exports = __toCommonJS(RollbackOutlined_exports);
|
|
35
|
+
var React = __toESM(require("react"));
|
|
36
|
+
var import_RollbackOutlined = __toESM(require("@sensoro-design/icons-svg/es/asn/RollbackOutlined"));
|
|
37
|
+
var import_SensoroIcon = __toESM(require("../components/SensoroIcon"));
|
|
38
|
+
var RollbackOutlined = (props, ref) => /* @__PURE__ */ React.createElement(import_SensoroIcon.default, { ...props, ref, icon: import_RollbackOutlined.default });
|
|
39
|
+
var RefIcon = React.forwardRef(RollbackOutlined);
|
|
40
|
+
RefIcon.displayName = "RollbackOutlined";
|
|
41
|
+
var RollbackOutlined_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/ScatterPlotOutlined.tsx
|
|
30
|
+
var ScatterPlotOutlined_exports = {};
|
|
31
|
+
__export(ScatterPlotOutlined_exports, {
|
|
32
|
+
default: () => ScatterPlotOutlined_default
|
|
33
|
+
});
|
|
34
|
+
module.exports = __toCommonJS(ScatterPlotOutlined_exports);
|
|
35
|
+
var React = __toESM(require("react"));
|
|
36
|
+
var import_ScatterPlotOutlined = __toESM(require("@sensoro-design/icons-svg/es/asn/ScatterPlotOutlined"));
|
|
37
|
+
var import_SensoroIcon = __toESM(require("../components/SensoroIcon"));
|
|
38
|
+
var ScatterPlotOutlined = (props, ref) => /* @__PURE__ */ React.createElement(import_SensoroIcon.default, { ...props, ref, icon: import_ScatterPlotOutlined.default });
|
|
39
|
+
var RefIcon = React.forwardRef(ScatterPlotOutlined);
|
|
40
|
+
RefIcon.displayName = "ScatterPlotOutlined";
|
|
41
|
+
var ScatterPlotOutlined_default = RefIcon;
|
package/lib/icons/index.d.ts
CHANGED
|
@@ -791,6 +791,7 @@ export { default as RoadNetworkFilled } from './RoadNetworkFilled';
|
|
|
791
791
|
export { default as RoadOutlined } from './RoadOutlined';
|
|
792
792
|
export { default as RobotOutlined } from './RobotOutlined';
|
|
793
793
|
export { default as RocketOutlined } from './RocketOutlined';
|
|
794
|
+
export { default as RollbackOutlined } from './RollbackOutlined';
|
|
794
795
|
export { default as RoomFilled } from './RoomFilled';
|
|
795
796
|
export { default as RoomOutlined } from './RoomOutlined';
|
|
796
797
|
export { default as RotateLeftOutlined } from './RotateLeftOutlined';
|
|
@@ -818,6 +819,7 @@ export { default as SatelliteFilled } from './SatelliteFilled';
|
|
|
818
819
|
export { default as SatelliteOutlined } from './SatelliteOutlined';
|
|
819
820
|
export { default as SaveOutlined } from './SaveOutlined';
|
|
820
821
|
export { default as ScanCodeOutlined } from './ScanCodeOutlined';
|
|
822
|
+
export { default as ScatterPlotOutlined } from './ScatterPlotOutlined';
|
|
821
823
|
export { default as ScenicAreaFilled } from './ScenicAreaFilled';
|
|
822
824
|
export { default as ScenicAreaOutlined } from './ScenicAreaOutlined';
|
|
823
825
|
export { default as ScheduleOutlined } from './ScheduleOutlined';
|
package/lib/icons/index.js
CHANGED
|
@@ -822,6 +822,7 @@ __export(icons_exports, {
|
|
|
822
822
|
RoadOutlined: () => import_RoadOutlined.default,
|
|
823
823
|
RobotOutlined: () => import_RobotOutlined.default,
|
|
824
824
|
RocketOutlined: () => import_RocketOutlined.default,
|
|
825
|
+
RollbackOutlined: () => import_RollbackOutlined.default,
|
|
825
826
|
RoomFilled: () => import_RoomFilled.default,
|
|
826
827
|
RoomOutlined: () => import_RoomOutlined.default,
|
|
827
828
|
RotateLeftOutlined: () => import_RotateLeftOutlined.default,
|
|
@@ -849,6 +850,7 @@ __export(icons_exports, {
|
|
|
849
850
|
SatelliteOutlined: () => import_SatelliteOutlined.default,
|
|
850
851
|
SaveOutlined: () => import_SaveOutlined.default,
|
|
851
852
|
ScanCodeOutlined: () => import_ScanCodeOutlined.default,
|
|
853
|
+
ScatterPlotOutlined: () => import_ScatterPlotOutlined.default,
|
|
852
854
|
ScenicAreaFilled: () => import_ScenicAreaFilled.default,
|
|
853
855
|
ScenicAreaOutlined: () => import_ScenicAreaOutlined.default,
|
|
854
856
|
ScheduleOutlined: () => import_ScheduleOutlined.default,
|
|
@@ -1887,6 +1889,7 @@ var import_RoadNetworkFilled = __toESM(require("./RoadNetworkFilled"));
|
|
|
1887
1889
|
var import_RoadOutlined = __toESM(require("./RoadOutlined"));
|
|
1888
1890
|
var import_RobotOutlined = __toESM(require("./RobotOutlined"));
|
|
1889
1891
|
var import_RocketOutlined = __toESM(require("./RocketOutlined"));
|
|
1892
|
+
var import_RollbackOutlined = __toESM(require("./RollbackOutlined"));
|
|
1890
1893
|
var import_RoomFilled = __toESM(require("./RoomFilled"));
|
|
1891
1894
|
var import_RoomOutlined = __toESM(require("./RoomOutlined"));
|
|
1892
1895
|
var import_RotateLeftOutlined = __toESM(require("./RotateLeftOutlined"));
|
|
@@ -1914,6 +1917,7 @@ var import_SatelliteFilled = __toESM(require("./SatelliteFilled"));
|
|
|
1914
1917
|
var import_SatelliteOutlined = __toESM(require("./SatelliteOutlined"));
|
|
1915
1918
|
var import_SaveOutlined = __toESM(require("./SaveOutlined"));
|
|
1916
1919
|
var import_ScanCodeOutlined = __toESM(require("./ScanCodeOutlined"));
|
|
1920
|
+
var import_ScatterPlotOutlined = __toESM(require("./ScatterPlotOutlined"));
|
|
1917
1921
|
var import_ScenicAreaFilled = __toESM(require("./ScenicAreaFilled"));
|
|
1918
1922
|
var import_ScenicAreaOutlined = __toESM(require("./ScenicAreaOutlined"));
|
|
1919
1923
|
var import_ScheduleOutlined = __toESM(require("./ScheduleOutlined"));
|
|
@@ -2952,6 +2956,7 @@ var import_ZoomPlusOutlined = __toESM(require("./ZoomPlusOutlined"));
|
|
|
2952
2956
|
RoadOutlined,
|
|
2953
2957
|
RobotOutlined,
|
|
2954
2958
|
RocketOutlined,
|
|
2959
|
+
RollbackOutlined,
|
|
2955
2960
|
RoomFilled,
|
|
2956
2961
|
RoomOutlined,
|
|
2957
2962
|
RotateLeftOutlined,
|
|
@@ -2979,6 +2984,7 @@ var import_ZoomPlusOutlined = __toESM(require("./ZoomPlusOutlined"));
|
|
|
2979
2984
|
SatelliteOutlined,
|
|
2980
2985
|
SaveOutlined,
|
|
2981
2986
|
ScanCodeOutlined,
|
|
2987
|
+
ScatterPlotOutlined,
|
|
2982
2988
|
ScenicAreaFilled,
|
|
2983
2989
|
ScenicAreaOutlined,
|
|
2984
2990
|
ScheduleOutlined,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sensoro-design/icons",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.86.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.
|
|
30
|
+
"@sensoro-design/icons-svg": "2.86.0"
|
|
31
31
|
},
|
|
32
32
|
"publishConfig": {
|
|
33
33
|
"access": "public"
|