@sensoro-design/icons 2.89.0 → 2.91.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/ApiOutlined.d.ts +2 -0
- package/ApiOutlined.js +16 -0
- package/CHANGELOG.md +22 -0
- package/RangeHoodOutlined.d.ts +2 -0
- package/RangeHoodOutlined.js +16 -0
- package/es/icons/ApiOutlined.d.ts +4 -0
- package/es/icons/ApiOutlined.js +14 -0
- package/es/icons/RangeHoodOutlined.d.ts +4 -0
- package/es/icons/RangeHoodOutlined.js +14 -0
- package/es/icons/index.d.ts +2 -0
- package/es/icons/index.js +2 -0
- package/lib/icons/ApiOutlined.d.ts +4 -0
- package/lib/icons/ApiOutlined.js +41 -0
- package/lib/icons/RangeHoodOutlined.d.ts +4 -0
- package/lib/icons/RangeHoodOutlined.js +41 -0
- package/lib/icons/index.d.ts +2 -0
- package/lib/icons/index.js +6 -0
- package/package.json +2 -2
package/ApiOutlined.d.ts
ADDED
package/ApiOutlined.js
ADDED
|
@@ -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 _ApiOutlined = _interopRequireDefault(require('./es/icons/ApiOutlined'));
|
|
11
|
+
|
|
12
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
|
|
13
|
+
|
|
14
|
+
var _default = _ApiOutlined;
|
|
15
|
+
exports.default = _default;
|
|
16
|
+
module.exports = _default;
|
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.91.0](https://github.com/sensoro-design/sensoro-design-icons/compare/v2.90.0...v2.91.0) (2025-06-26)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* add ApiOutlined ([0856f90](https://github.com/sensoro-design/sensoro-design-icons/commit/0856f90cfb084e3835cd4b7ad1ffcec6a2ea9026))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [2.90.0](https://github.com/sensoro-design/sensoro-design-icons/compare/v2.89.0...v2.90.0) (2025-06-11)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* add RangeHoodOutlined ([629be13](https://github.com/sensoro-design/sensoro-design-icons/commit/629be13aea261084dc99758d05b33a2b506bc4db))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
6
28
|
# [2.89.0](https://github.com/sensoro-design/sensoro-design-icons/compare/v2.88.0...v2.89.0) (2025-05-21)
|
|
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 _RangeHoodOutlined = _interopRequireDefault(require('./es/icons/RangeHoodOutlined'));
|
|
11
|
+
|
|
12
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
|
|
13
|
+
|
|
14
|
+
var _default = _RangeHoodOutlined;
|
|
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 ApiOutlinedSvg from '@sensoro-design/icons-svg/es/asn/ApiOutlined';
|
|
5
|
+
import SensoroIcon from "../components/SensoroIcon";
|
|
6
|
+
var ApiOutlined = function ApiOutlined(props, ref) {
|
|
7
|
+
return /*#__PURE__*/React.createElement(SensoroIcon, _extends({}, props, {
|
|
8
|
+
ref: ref,
|
|
9
|
+
icon: ApiOutlinedSvg
|
|
10
|
+
}));
|
|
11
|
+
};
|
|
12
|
+
var RefIcon = /*#__PURE__*/React.forwardRef(ApiOutlined);
|
|
13
|
+
RefIcon.displayName = 'ApiOutlined';
|
|
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 RangeHoodOutlinedSvg from '@sensoro-design/icons-svg/es/asn/RangeHoodOutlined';
|
|
5
|
+
import SensoroIcon from "../components/SensoroIcon";
|
|
6
|
+
var RangeHoodOutlined = function RangeHoodOutlined(props, ref) {
|
|
7
|
+
return /*#__PURE__*/React.createElement(SensoroIcon, _extends({}, props, {
|
|
8
|
+
ref: ref,
|
|
9
|
+
icon: RangeHoodOutlinedSvg
|
|
10
|
+
}));
|
|
11
|
+
};
|
|
12
|
+
var RefIcon = /*#__PURE__*/React.forwardRef(RangeHoodOutlined);
|
|
13
|
+
RefIcon.displayName = 'RangeHoodOutlined';
|
|
14
|
+
export default RefIcon;
|
package/es/icons/index.d.ts
CHANGED
|
@@ -31,6 +31,7 @@ export { default as AnimalHospitalFilled } from './AnimalHospitalFilled';
|
|
|
31
31
|
export { default as AnimalHospitalOutlined } from './AnimalHospitalOutlined';
|
|
32
32
|
export { default as ApertureMinusOutlined } from './ApertureMinusOutlined';
|
|
33
33
|
export { default as AperturePlusOutlined } from './AperturePlusOutlined';
|
|
34
|
+
export { default as ApiOutlined } from './ApiOutlined';
|
|
34
35
|
export { default as AppleFilled } from './AppleFilled';
|
|
35
36
|
export { default as AppleOutlined } from './AppleOutlined';
|
|
36
37
|
export { default as AppletsOutlined } from './AppletsOutlined';
|
|
@@ -752,6 +753,7 @@ export { default as RadioReceiverOutlined } from './RadioReceiverOutlined';
|
|
|
752
753
|
export { default as RailwayStationFilled } from './RailwayStationFilled';
|
|
753
754
|
export { default as RainfallOutlined } from './RainfallOutlined';
|
|
754
755
|
export { default as RainstormOutlined } from './RainstormOutlined';
|
|
756
|
+
export { default as RangeHoodOutlined } from './RangeHoodOutlined';
|
|
755
757
|
export { default as ReasoningFilled } from './ReasoningFilled';
|
|
756
758
|
export { default as ReasoningOutlined } from './ReasoningOutlined';
|
|
757
759
|
export { default as RecreationFilled } from './RecreationFilled';
|
package/es/icons/index.js
CHANGED
|
@@ -32,6 +32,7 @@ export { default as AnimalHospitalFilled } from "./AnimalHospitalFilled";
|
|
|
32
32
|
export { default as AnimalHospitalOutlined } from "./AnimalHospitalOutlined";
|
|
33
33
|
export { default as ApertureMinusOutlined } from "./ApertureMinusOutlined";
|
|
34
34
|
export { default as AperturePlusOutlined } from "./AperturePlusOutlined";
|
|
35
|
+
export { default as ApiOutlined } from "./ApiOutlined";
|
|
35
36
|
export { default as AppleFilled } from "./AppleFilled";
|
|
36
37
|
export { default as AppleOutlined } from "./AppleOutlined";
|
|
37
38
|
export { default as AppletsOutlined } from "./AppletsOutlined";
|
|
@@ -753,6 +754,7 @@ export { default as RadioReceiverOutlined } from "./RadioReceiverOutlined";
|
|
|
753
754
|
export { default as RailwayStationFilled } from "./RailwayStationFilled";
|
|
754
755
|
export { default as RainfallOutlined } from "./RainfallOutlined";
|
|
755
756
|
export { default as RainstormOutlined } from "./RainstormOutlined";
|
|
757
|
+
export { default as RangeHoodOutlined } from "./RangeHoodOutlined";
|
|
756
758
|
export { default as ReasoningFilled } from "./ReasoningFilled";
|
|
757
759
|
export { default as ReasoningOutlined } from "./ReasoningOutlined";
|
|
758
760
|
export { default as RecreationFilled } from "./RecreationFilled";
|
|
@@ -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/ApiOutlined.tsx
|
|
30
|
+
var ApiOutlined_exports = {};
|
|
31
|
+
__export(ApiOutlined_exports, {
|
|
32
|
+
default: () => ApiOutlined_default
|
|
33
|
+
});
|
|
34
|
+
module.exports = __toCommonJS(ApiOutlined_exports);
|
|
35
|
+
var React = __toESM(require("react"));
|
|
36
|
+
var import_ApiOutlined = __toESM(require("@sensoro-design/icons-svg/es/asn/ApiOutlined"));
|
|
37
|
+
var import_SensoroIcon = __toESM(require("../components/SensoroIcon"));
|
|
38
|
+
var ApiOutlined = (props, ref) => /* @__PURE__ */ React.createElement(import_SensoroIcon.default, { ...props, ref, icon: import_ApiOutlined.default });
|
|
39
|
+
var RefIcon = React.forwardRef(ApiOutlined);
|
|
40
|
+
RefIcon.displayName = "ApiOutlined";
|
|
41
|
+
var ApiOutlined_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/RangeHoodOutlined.tsx
|
|
30
|
+
var RangeHoodOutlined_exports = {};
|
|
31
|
+
__export(RangeHoodOutlined_exports, {
|
|
32
|
+
default: () => RangeHoodOutlined_default
|
|
33
|
+
});
|
|
34
|
+
module.exports = __toCommonJS(RangeHoodOutlined_exports);
|
|
35
|
+
var React = __toESM(require("react"));
|
|
36
|
+
var import_RangeHoodOutlined = __toESM(require("@sensoro-design/icons-svg/es/asn/RangeHoodOutlined"));
|
|
37
|
+
var import_SensoroIcon = __toESM(require("../components/SensoroIcon"));
|
|
38
|
+
var RangeHoodOutlined = (props, ref) => /* @__PURE__ */ React.createElement(import_SensoroIcon.default, { ...props, ref, icon: import_RangeHoodOutlined.default });
|
|
39
|
+
var RefIcon = React.forwardRef(RangeHoodOutlined);
|
|
40
|
+
RefIcon.displayName = "RangeHoodOutlined";
|
|
41
|
+
var RangeHoodOutlined_default = RefIcon;
|
package/lib/icons/index.d.ts
CHANGED
|
@@ -31,6 +31,7 @@ export { default as AnimalHospitalFilled } from './AnimalHospitalFilled';
|
|
|
31
31
|
export { default as AnimalHospitalOutlined } from './AnimalHospitalOutlined';
|
|
32
32
|
export { default as ApertureMinusOutlined } from './ApertureMinusOutlined';
|
|
33
33
|
export { default as AperturePlusOutlined } from './AperturePlusOutlined';
|
|
34
|
+
export { default as ApiOutlined } from './ApiOutlined';
|
|
34
35
|
export { default as AppleFilled } from './AppleFilled';
|
|
35
36
|
export { default as AppleOutlined } from './AppleOutlined';
|
|
36
37
|
export { default as AppletsOutlined } from './AppletsOutlined';
|
|
@@ -752,6 +753,7 @@ export { default as RadioReceiverOutlined } from './RadioReceiverOutlined';
|
|
|
752
753
|
export { default as RailwayStationFilled } from './RailwayStationFilled';
|
|
753
754
|
export { default as RainfallOutlined } from './RainfallOutlined';
|
|
754
755
|
export { default as RainstormOutlined } from './RainstormOutlined';
|
|
756
|
+
export { default as RangeHoodOutlined } from './RangeHoodOutlined';
|
|
755
757
|
export { default as ReasoningFilled } from './ReasoningFilled';
|
|
756
758
|
export { default as ReasoningOutlined } from './ReasoningOutlined';
|
|
757
759
|
export { default as RecreationFilled } from './RecreationFilled';
|
package/lib/icons/index.js
CHANGED
|
@@ -62,6 +62,7 @@ __export(icons_exports, {
|
|
|
62
62
|
AnimalHospitalOutlined: () => import_AnimalHospitalOutlined.default,
|
|
63
63
|
ApertureMinusOutlined: () => import_ApertureMinusOutlined.default,
|
|
64
64
|
AperturePlusOutlined: () => import_AperturePlusOutlined.default,
|
|
65
|
+
ApiOutlined: () => import_ApiOutlined.default,
|
|
65
66
|
AppleFilled: () => import_AppleFilled.default,
|
|
66
67
|
AppleOutlined: () => import_AppleOutlined.default,
|
|
67
68
|
AppletsOutlined: () => import_AppletsOutlined.default,
|
|
@@ -783,6 +784,7 @@ __export(icons_exports, {
|
|
|
783
784
|
RailwayStationFilled: () => import_RailwayStationFilled.default,
|
|
784
785
|
RainfallOutlined: () => import_RainfallOutlined.default,
|
|
785
786
|
RainstormOutlined: () => import_RainstormOutlined.default,
|
|
787
|
+
RangeHoodOutlined: () => import_RangeHoodOutlined.default,
|
|
786
788
|
ReasoningFilled: () => import_ReasoningFilled.default,
|
|
787
789
|
ReasoningOutlined: () => import_ReasoningOutlined.default,
|
|
788
790
|
RecreationFilled: () => import_RecreationFilled.default,
|
|
@@ -1133,6 +1135,7 @@ var import_AnimalHospitalFilled = __toESM(require("./AnimalHospitalFilled"));
|
|
|
1133
1135
|
var import_AnimalHospitalOutlined = __toESM(require("./AnimalHospitalOutlined"));
|
|
1134
1136
|
var import_ApertureMinusOutlined = __toESM(require("./ApertureMinusOutlined"));
|
|
1135
1137
|
var import_AperturePlusOutlined = __toESM(require("./AperturePlusOutlined"));
|
|
1138
|
+
var import_ApiOutlined = __toESM(require("./ApiOutlined"));
|
|
1136
1139
|
var import_AppleFilled = __toESM(require("./AppleFilled"));
|
|
1137
1140
|
var import_AppleOutlined = __toESM(require("./AppleOutlined"));
|
|
1138
1141
|
var import_AppletsOutlined = __toESM(require("./AppletsOutlined"));
|
|
@@ -1854,6 +1857,7 @@ var import_RadioReceiverOutlined = __toESM(require("./RadioReceiverOutlined"));
|
|
|
1854
1857
|
var import_RailwayStationFilled = __toESM(require("./RailwayStationFilled"));
|
|
1855
1858
|
var import_RainfallOutlined = __toESM(require("./RainfallOutlined"));
|
|
1856
1859
|
var import_RainstormOutlined = __toESM(require("./RainstormOutlined"));
|
|
1860
|
+
var import_RangeHoodOutlined = __toESM(require("./RangeHoodOutlined"));
|
|
1857
1861
|
var import_ReasoningFilled = __toESM(require("./ReasoningFilled"));
|
|
1858
1862
|
var import_ReasoningOutlined = __toESM(require("./ReasoningOutlined"));
|
|
1859
1863
|
var import_RecreationFilled = __toESM(require("./RecreationFilled"));
|
|
@@ -2204,6 +2208,7 @@ var import_ZoomPlusOutlined = __toESM(require("./ZoomPlusOutlined"));
|
|
|
2204
2208
|
AnimalHospitalOutlined,
|
|
2205
2209
|
ApertureMinusOutlined,
|
|
2206
2210
|
AperturePlusOutlined,
|
|
2211
|
+
ApiOutlined,
|
|
2207
2212
|
AppleFilled,
|
|
2208
2213
|
AppleOutlined,
|
|
2209
2214
|
AppletsOutlined,
|
|
@@ -2925,6 +2930,7 @@ var import_ZoomPlusOutlined = __toESM(require("./ZoomPlusOutlined"));
|
|
|
2925
2930
|
RailwayStationFilled,
|
|
2926
2931
|
RainfallOutlined,
|
|
2927
2932
|
RainstormOutlined,
|
|
2933
|
+
RangeHoodOutlined,
|
|
2928
2934
|
ReasoningFilled,
|
|
2929
2935
|
ReasoningOutlined,
|
|
2930
2936
|
RecreationFilled,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sensoro-design/icons",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.91.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.91.0"
|
|
31
31
|
},
|
|
32
32
|
"publishConfig": {
|
|
33
33
|
"access": "public"
|