@sensoro-design/icons 2.94.0 → 2.95.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/AiSearchOutlined.d.ts +2 -0
- package/AiSearchOutlined.js +16 -0
- package/CHANGELOG.md +11 -0
- package/SankeyOutlined.d.ts +2 -0
- package/SankeyOutlined.js +16 -0
- package/es/icons/AiSearchOutlined.d.ts +4 -0
- package/es/icons/AiSearchOutlined.js +14 -0
- package/es/icons/SankeyOutlined.d.ts +4 -0
- package/es/icons/SankeyOutlined.js +14 -0
- package/es/icons/index.d.ts +2 -0
- package/es/icons/index.js +2 -0
- package/lib/icons/AiSearchOutlined.d.ts +4 -0
- package/lib/icons/AiSearchOutlined.js +41 -0
- package/lib/icons/SankeyOutlined.d.ts +4 -0
- package/lib/icons/SankeyOutlined.js +41 -0
- package/lib/icons/index.d.ts +2 -0
- package/lib/icons/index.js +6 -0
- package/package.json +2 -2
|
@@ -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 _AiSearchOutlined = _interopRequireDefault(require('./es/icons/AiSearchOutlined'));
|
|
11
|
+
|
|
12
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
|
|
13
|
+
|
|
14
|
+
var _default = _AiSearchOutlined;
|
|
15
|
+
exports.default = _default;
|
|
16
|
+
module.exports = _default;
|
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
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.95.0](https://github.com/sensoro-design/sensoro-design-icons/compare/v2.94.0...v2.95.0) (2025-08-04)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* add AiSearchOutlined、SankeyOutlined ([5bdaa67](https://github.com/sensoro-design/sensoro-design-icons/commit/5bdaa6747ed989ac3c63263ff106ec7d90ba0a1a))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [2.94.0](https://github.com/sensoro-design/sensoro-design-icons/compare/v2.93.0...v2.94.0) (2025-07-16)
|
|
7
18
|
|
|
8
19
|
|
|
@@ -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 _SankeyOutlined = _interopRequireDefault(require('./es/icons/SankeyOutlined'));
|
|
11
|
+
|
|
12
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
|
|
13
|
+
|
|
14
|
+
var _default = _SankeyOutlined;
|
|
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 AiSearchOutlinedSvg from '@sensoro-design/icons-svg/es/asn/AiSearchOutlined';
|
|
5
|
+
import SensoroIcon from "../components/SensoroIcon";
|
|
6
|
+
var AiSearchOutlined = function AiSearchOutlined(props, ref) {
|
|
7
|
+
return /*#__PURE__*/React.createElement(SensoroIcon, _extends({}, props, {
|
|
8
|
+
ref: ref,
|
|
9
|
+
icon: AiSearchOutlinedSvg
|
|
10
|
+
}));
|
|
11
|
+
};
|
|
12
|
+
var RefIcon = /*#__PURE__*/React.forwardRef(AiSearchOutlined);
|
|
13
|
+
RefIcon.displayName = 'AiSearchOutlined';
|
|
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 SankeyOutlinedSvg from '@sensoro-design/icons-svg/es/asn/SankeyOutlined';
|
|
5
|
+
import SensoroIcon from "../components/SensoroIcon";
|
|
6
|
+
var SankeyOutlined = function SankeyOutlined(props, ref) {
|
|
7
|
+
return /*#__PURE__*/React.createElement(SensoroIcon, _extends({}, props, {
|
|
8
|
+
ref: ref,
|
|
9
|
+
icon: SankeyOutlinedSvg
|
|
10
|
+
}));
|
|
11
|
+
};
|
|
12
|
+
var RefIcon = /*#__PURE__*/React.forwardRef(SankeyOutlined);
|
|
13
|
+
RefIcon.displayName = 'SankeyOutlined';
|
|
14
|
+
export default RefIcon;
|
package/es/icons/index.d.ts
CHANGED
|
@@ -8,6 +8,7 @@ export { default as AccountBookTwoTone } from './AccountBookTwoTone';
|
|
|
8
8
|
export { default as AccountOutlined } from './AccountOutlined';
|
|
9
9
|
export { default as AddressOutlined } from './AddressOutlined';
|
|
10
10
|
export { default as AiOutlined } from './AiOutlined';
|
|
11
|
+
export { default as AiSearchOutlined } from './AiSearchOutlined';
|
|
11
12
|
export { default as AimFilled } from './AimFilled';
|
|
12
13
|
export { default as AimOutlined } from './AimOutlined';
|
|
13
14
|
export { default as AirPressureOutlined } from './AirPressureOutlined';
|
|
@@ -828,6 +829,7 @@ export { default as SafetyRopeOutlined } from './SafetyRopeOutlined';
|
|
|
828
829
|
export { default as SafetySearchFilled } from './SafetySearchFilled';
|
|
829
830
|
export { default as SafetySearchOutlined } from './SafetySearchOutlined';
|
|
830
831
|
export { default as SalesCallFilled } from './SalesCallFilled';
|
|
832
|
+
export { default as SankeyOutlined } from './SankeyOutlined';
|
|
831
833
|
export { default as SatelliteFilled } from './SatelliteFilled';
|
|
832
834
|
export { default as SatelliteOutlined } from './SatelliteOutlined';
|
|
833
835
|
export { default as SaveOutlined } from './SaveOutlined';
|
package/es/icons/index.js
CHANGED
|
@@ -9,6 +9,7 @@ export { default as AccountBookTwoTone } from "./AccountBookTwoTone";
|
|
|
9
9
|
export { default as AccountOutlined } from "./AccountOutlined";
|
|
10
10
|
export { default as AddressOutlined } from "./AddressOutlined";
|
|
11
11
|
export { default as AiOutlined } from "./AiOutlined";
|
|
12
|
+
export { default as AiSearchOutlined } from "./AiSearchOutlined";
|
|
12
13
|
export { default as AimFilled } from "./AimFilled";
|
|
13
14
|
export { default as AimOutlined } from "./AimOutlined";
|
|
14
15
|
export { default as AirPressureOutlined } from "./AirPressureOutlined";
|
|
@@ -829,6 +830,7 @@ export { default as SafetyRopeOutlined } from "./SafetyRopeOutlined";
|
|
|
829
830
|
export { default as SafetySearchFilled } from "./SafetySearchFilled";
|
|
830
831
|
export { default as SafetySearchOutlined } from "./SafetySearchOutlined";
|
|
831
832
|
export { default as SalesCallFilled } from "./SalesCallFilled";
|
|
833
|
+
export { default as SankeyOutlined } from "./SankeyOutlined";
|
|
832
834
|
export { default as SatelliteFilled } from "./SatelliteFilled";
|
|
833
835
|
export { default as SatelliteOutlined } from "./SatelliteOutlined";
|
|
834
836
|
export { default as SaveOutlined } from "./SaveOutlined";
|
|
@@ -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/AiSearchOutlined.tsx
|
|
30
|
+
var AiSearchOutlined_exports = {};
|
|
31
|
+
__export(AiSearchOutlined_exports, {
|
|
32
|
+
default: () => AiSearchOutlined_default
|
|
33
|
+
});
|
|
34
|
+
module.exports = __toCommonJS(AiSearchOutlined_exports);
|
|
35
|
+
var React = __toESM(require("react"));
|
|
36
|
+
var import_AiSearchOutlined = __toESM(require("@sensoro-design/icons-svg/es/asn/AiSearchOutlined"));
|
|
37
|
+
var import_SensoroIcon = __toESM(require("../components/SensoroIcon"));
|
|
38
|
+
var AiSearchOutlined = (props, ref) => /* @__PURE__ */ React.createElement(import_SensoroIcon.default, { ...props, ref, icon: import_AiSearchOutlined.default });
|
|
39
|
+
var RefIcon = React.forwardRef(AiSearchOutlined);
|
|
40
|
+
RefIcon.displayName = "AiSearchOutlined";
|
|
41
|
+
var AiSearchOutlined_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/SankeyOutlined.tsx
|
|
30
|
+
var SankeyOutlined_exports = {};
|
|
31
|
+
__export(SankeyOutlined_exports, {
|
|
32
|
+
default: () => SankeyOutlined_default
|
|
33
|
+
});
|
|
34
|
+
module.exports = __toCommonJS(SankeyOutlined_exports);
|
|
35
|
+
var React = __toESM(require("react"));
|
|
36
|
+
var import_SankeyOutlined = __toESM(require("@sensoro-design/icons-svg/es/asn/SankeyOutlined"));
|
|
37
|
+
var import_SensoroIcon = __toESM(require("../components/SensoroIcon"));
|
|
38
|
+
var SankeyOutlined = (props, ref) => /* @__PURE__ */ React.createElement(import_SensoroIcon.default, { ...props, ref, icon: import_SankeyOutlined.default });
|
|
39
|
+
var RefIcon = React.forwardRef(SankeyOutlined);
|
|
40
|
+
RefIcon.displayName = "SankeyOutlined";
|
|
41
|
+
var SankeyOutlined_default = RefIcon;
|
package/lib/icons/index.d.ts
CHANGED
|
@@ -8,6 +8,7 @@ export { default as AccountBookTwoTone } from './AccountBookTwoTone';
|
|
|
8
8
|
export { default as AccountOutlined } from './AccountOutlined';
|
|
9
9
|
export { default as AddressOutlined } from './AddressOutlined';
|
|
10
10
|
export { default as AiOutlined } from './AiOutlined';
|
|
11
|
+
export { default as AiSearchOutlined } from './AiSearchOutlined';
|
|
11
12
|
export { default as AimFilled } from './AimFilled';
|
|
12
13
|
export { default as AimOutlined } from './AimOutlined';
|
|
13
14
|
export { default as AirPressureOutlined } from './AirPressureOutlined';
|
|
@@ -828,6 +829,7 @@ export { default as SafetyRopeOutlined } from './SafetyRopeOutlined';
|
|
|
828
829
|
export { default as SafetySearchFilled } from './SafetySearchFilled';
|
|
829
830
|
export { default as SafetySearchOutlined } from './SafetySearchOutlined';
|
|
830
831
|
export { default as SalesCallFilled } from './SalesCallFilled';
|
|
832
|
+
export { default as SankeyOutlined } from './SankeyOutlined';
|
|
831
833
|
export { default as SatelliteFilled } from './SatelliteFilled';
|
|
832
834
|
export { default as SatelliteOutlined } from './SatelliteOutlined';
|
|
833
835
|
export { default as SaveOutlined } from './SaveOutlined';
|
package/lib/icons/index.js
CHANGED
|
@@ -39,6 +39,7 @@ __export(icons_exports, {
|
|
|
39
39
|
AccountOutlined: () => import_AccountOutlined.default,
|
|
40
40
|
AddressOutlined: () => import_AddressOutlined.default,
|
|
41
41
|
AiOutlined: () => import_AiOutlined.default,
|
|
42
|
+
AiSearchOutlined: () => import_AiSearchOutlined.default,
|
|
42
43
|
AimFilled: () => import_AimFilled.default,
|
|
43
44
|
AimOutlined: () => import_AimOutlined.default,
|
|
44
45
|
AirPressureOutlined: () => import_AirPressureOutlined.default,
|
|
@@ -859,6 +860,7 @@ __export(icons_exports, {
|
|
|
859
860
|
SafetySearchFilled: () => import_SafetySearchFilled.default,
|
|
860
861
|
SafetySearchOutlined: () => import_SafetySearchOutlined.default,
|
|
861
862
|
SalesCallFilled: () => import_SalesCallFilled.default,
|
|
863
|
+
SankeyOutlined: () => import_SankeyOutlined.default,
|
|
862
864
|
SatelliteFilled: () => import_SatelliteFilled.default,
|
|
863
865
|
SatelliteOutlined: () => import_SatelliteOutlined.default,
|
|
864
866
|
SaveOutlined: () => import_SaveOutlined.default,
|
|
@@ -1124,6 +1126,7 @@ var import_AccountBookTwoTone = __toESM(require("./AccountBookTwoTone"));
|
|
|
1124
1126
|
var import_AccountOutlined = __toESM(require("./AccountOutlined"));
|
|
1125
1127
|
var import_AddressOutlined = __toESM(require("./AddressOutlined"));
|
|
1126
1128
|
var import_AiOutlined = __toESM(require("./AiOutlined"));
|
|
1129
|
+
var import_AiSearchOutlined = __toESM(require("./AiSearchOutlined"));
|
|
1127
1130
|
var import_AimFilled = __toESM(require("./AimFilled"));
|
|
1128
1131
|
var import_AimOutlined = __toESM(require("./AimOutlined"));
|
|
1129
1132
|
var import_AirPressureOutlined = __toESM(require("./AirPressureOutlined"));
|
|
@@ -1944,6 +1947,7 @@ var import_SafetyRopeOutlined = __toESM(require("./SafetyRopeOutlined"));
|
|
|
1944
1947
|
var import_SafetySearchFilled = __toESM(require("./SafetySearchFilled"));
|
|
1945
1948
|
var import_SafetySearchOutlined = __toESM(require("./SafetySearchOutlined"));
|
|
1946
1949
|
var import_SalesCallFilled = __toESM(require("./SalesCallFilled"));
|
|
1950
|
+
var import_SankeyOutlined = __toESM(require("./SankeyOutlined"));
|
|
1947
1951
|
var import_SatelliteFilled = __toESM(require("./SatelliteFilled"));
|
|
1948
1952
|
var import_SatelliteOutlined = __toESM(require("./SatelliteOutlined"));
|
|
1949
1953
|
var import_SaveOutlined = __toESM(require("./SaveOutlined"));
|
|
@@ -2209,6 +2213,7 @@ var import_ZoomPlusOutlined = __toESM(require("./ZoomPlusOutlined"));
|
|
|
2209
2213
|
AccountOutlined,
|
|
2210
2214
|
AddressOutlined,
|
|
2211
2215
|
AiOutlined,
|
|
2216
|
+
AiSearchOutlined,
|
|
2212
2217
|
AimFilled,
|
|
2213
2218
|
AimOutlined,
|
|
2214
2219
|
AirPressureOutlined,
|
|
@@ -3029,6 +3034,7 @@ var import_ZoomPlusOutlined = __toESM(require("./ZoomPlusOutlined"));
|
|
|
3029
3034
|
SafetySearchFilled,
|
|
3030
3035
|
SafetySearchOutlined,
|
|
3031
3036
|
SalesCallFilled,
|
|
3037
|
+
SankeyOutlined,
|
|
3032
3038
|
SatelliteFilled,
|
|
3033
3039
|
SatelliteOutlined,
|
|
3034
3040
|
SaveOutlined,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sensoro-design/icons",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.95.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.95.0"
|
|
31
31
|
},
|
|
32
32
|
"publishConfig": {
|
|
33
33
|
"access": "public"
|