@sensoro-design/icons 2.81.0 → 2.83.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/HexagonOutlined.d.ts +2 -0
- package/HexagonOutlined.js +16 -0
- package/SendFilled.d.ts +2 -0
- package/SendFilled.js +16 -0
- package/es/icons/HexagonOutlined.d.ts +4 -0
- package/es/icons/HexagonOutlined.js +14 -0
- package/es/icons/SendFilled.d.ts +4 -0
- package/es/icons/SendFilled.js +14 -0
- package/es/icons/index.d.ts +2 -0
- package/es/icons/index.js +2 -0
- package/lib/icons/HexagonOutlined.d.ts +4 -0
- package/lib/icons/HexagonOutlined.js +41 -0
- package/lib/icons/SendFilled.d.ts +4 -0
- package/lib/icons/SendFilled.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.83.0](https://github.com/sensoro-design/sensoro-design-icons/compare/v2.82.0...v2.83.0) (2025-03-27)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* add HexagonOutlined ([af8dd13](https://github.com/sensoro-design/sensoro-design-icons/commit/af8dd1355d3c991c62d5ecedd88130fdda8636c5))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [2.82.0](https://github.com/sensoro-design/sensoro-design-icons/compare/v2.81.0...v2.82.0) (2025-03-14)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* add SendFilled ([fd7bde8](https://github.com/sensoro-design/sensoro-design-icons/commit/fd7bde854866821bd8da5f2a0e8778d92aa46b7c))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
6
28
|
# [2.81.0](https://github.com/sensoro-design/sensoro-design-icons/compare/v2.80.0...v2.81.0) (2025-03-07)
|
|
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 _HexagonOutlined = _interopRequireDefault(require('./es/icons/HexagonOutlined'));
|
|
11
|
+
|
|
12
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
|
|
13
|
+
|
|
14
|
+
var _default = _HexagonOutlined;
|
|
15
|
+
exports.default = _default;
|
|
16
|
+
module.exports = _default;
|
package/SendFilled.d.ts
ADDED
package/SendFilled.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 _SendFilled = _interopRequireDefault(require('./es/icons/SendFilled'));
|
|
11
|
+
|
|
12
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
|
|
13
|
+
|
|
14
|
+
var _default = _SendFilled;
|
|
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 HexagonOutlinedSvg from '@sensoro-design/icons-svg/es/asn/HexagonOutlined';
|
|
5
|
+
import SensoroIcon from "../components/SensoroIcon";
|
|
6
|
+
var HexagonOutlined = function HexagonOutlined(props, ref) {
|
|
7
|
+
return /*#__PURE__*/React.createElement(SensoroIcon, _extends({}, props, {
|
|
8
|
+
ref: ref,
|
|
9
|
+
icon: HexagonOutlinedSvg
|
|
10
|
+
}));
|
|
11
|
+
};
|
|
12
|
+
var RefIcon = /*#__PURE__*/React.forwardRef(HexagonOutlined);
|
|
13
|
+
RefIcon.displayName = 'HexagonOutlined';
|
|
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 SendFilledSvg from '@sensoro-design/icons-svg/es/asn/SendFilled';
|
|
5
|
+
import SensoroIcon from "../components/SensoroIcon";
|
|
6
|
+
var SendFilled = function SendFilled(props, ref) {
|
|
7
|
+
return /*#__PURE__*/React.createElement(SensoroIcon, _extends({}, props, {
|
|
8
|
+
ref: ref,
|
|
9
|
+
icon: SendFilledSvg
|
|
10
|
+
}));
|
|
11
|
+
};
|
|
12
|
+
var RefIcon = /*#__PURE__*/React.forwardRef(SendFilled);
|
|
13
|
+
RefIcon.displayName = 'SendFilled';
|
|
14
|
+
export default RefIcon;
|
package/es/icons/index.d.ts
CHANGED
|
@@ -450,6 +450,7 @@ export { default as HeatmapOutlined } from './HeatmapOutlined';
|
|
|
450
450
|
export { default as HeavyFogOutlined } from './HeavyFogOutlined';
|
|
451
451
|
export { default as HelmetFilled } from './HelmetFilled';
|
|
452
452
|
export { default as HelmetOutlined } from './HelmetOutlined';
|
|
453
|
+
export { default as HexagonOutlined } from './HexagonOutlined';
|
|
453
454
|
export { default as HiddenDangerFilled } from './HiddenDangerFilled';
|
|
454
455
|
export { default as HighAltitudeCruiseOutlined } from './HighAltitudeCruiseOutlined';
|
|
455
456
|
export { default as HighSpeedBayonetFilled } from './HighSpeedBayonetFilled';
|
|
@@ -829,6 +830,7 @@ export { default as SearchProOutlined } from './SearchProOutlined';
|
|
|
829
830
|
export { default as SecurityCenterOutlined } from './SecurityCenterOutlined';
|
|
830
831
|
export { default as SecurityGuardOutlined } from './SecurityGuardOutlined';
|
|
831
832
|
export { default as SemanticSearchOutlined } from './SemanticSearchOutlined';
|
|
833
|
+
export { default as SendFilled } from './SendFilled';
|
|
832
834
|
export { default as SerialNumberOutlined } from './SerialNumberOutlined';
|
|
833
835
|
export { default as Service24HourOutlined } from './Service24HourOutlined';
|
|
834
836
|
export { default as ServiceCardFilled } from './ServiceCardFilled';
|
package/es/icons/index.js
CHANGED
|
@@ -451,6 +451,7 @@ export { default as HeatmapOutlined } from "./HeatmapOutlined";
|
|
|
451
451
|
export { default as HeavyFogOutlined } from "./HeavyFogOutlined";
|
|
452
452
|
export { default as HelmetFilled } from "./HelmetFilled";
|
|
453
453
|
export { default as HelmetOutlined } from "./HelmetOutlined";
|
|
454
|
+
export { default as HexagonOutlined } from "./HexagonOutlined";
|
|
454
455
|
export { default as HiddenDangerFilled } from "./HiddenDangerFilled";
|
|
455
456
|
export { default as HighAltitudeCruiseOutlined } from "./HighAltitudeCruiseOutlined";
|
|
456
457
|
export { default as HighSpeedBayonetFilled } from "./HighSpeedBayonetFilled";
|
|
@@ -830,6 +831,7 @@ export { default as SearchProOutlined } from "./SearchProOutlined";
|
|
|
830
831
|
export { default as SecurityCenterOutlined } from "./SecurityCenterOutlined";
|
|
831
832
|
export { default as SecurityGuardOutlined } from "./SecurityGuardOutlined";
|
|
832
833
|
export { default as SemanticSearchOutlined } from "./SemanticSearchOutlined";
|
|
834
|
+
export { default as SendFilled } from "./SendFilled";
|
|
833
835
|
export { default as SerialNumberOutlined } from "./SerialNumberOutlined";
|
|
834
836
|
export { default as Service24HourOutlined } from "./Service24HourOutlined";
|
|
835
837
|
export { default as ServiceCardFilled } from "./ServiceCardFilled";
|
|
@@ -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/HexagonOutlined.tsx
|
|
30
|
+
var HexagonOutlined_exports = {};
|
|
31
|
+
__export(HexagonOutlined_exports, {
|
|
32
|
+
default: () => HexagonOutlined_default
|
|
33
|
+
});
|
|
34
|
+
module.exports = __toCommonJS(HexagonOutlined_exports);
|
|
35
|
+
var React = __toESM(require("react"));
|
|
36
|
+
var import_HexagonOutlined = __toESM(require("@sensoro-design/icons-svg/es/asn/HexagonOutlined"));
|
|
37
|
+
var import_SensoroIcon = __toESM(require("../components/SensoroIcon"));
|
|
38
|
+
var HexagonOutlined = (props, ref) => /* @__PURE__ */ React.createElement(import_SensoroIcon.default, { ...props, ref, icon: import_HexagonOutlined.default });
|
|
39
|
+
var RefIcon = React.forwardRef(HexagonOutlined);
|
|
40
|
+
RefIcon.displayName = "HexagonOutlined";
|
|
41
|
+
var HexagonOutlined_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/SendFilled.tsx
|
|
30
|
+
var SendFilled_exports = {};
|
|
31
|
+
__export(SendFilled_exports, {
|
|
32
|
+
default: () => SendFilled_default
|
|
33
|
+
});
|
|
34
|
+
module.exports = __toCommonJS(SendFilled_exports);
|
|
35
|
+
var React = __toESM(require("react"));
|
|
36
|
+
var import_SendFilled = __toESM(require("@sensoro-design/icons-svg/es/asn/SendFilled"));
|
|
37
|
+
var import_SensoroIcon = __toESM(require("../components/SensoroIcon"));
|
|
38
|
+
var SendFilled = (props, ref) => /* @__PURE__ */ React.createElement(import_SensoroIcon.default, { ...props, ref, icon: import_SendFilled.default });
|
|
39
|
+
var RefIcon = React.forwardRef(SendFilled);
|
|
40
|
+
RefIcon.displayName = "SendFilled";
|
|
41
|
+
var SendFilled_default = RefIcon;
|
package/lib/icons/index.d.ts
CHANGED
|
@@ -450,6 +450,7 @@ export { default as HeatmapOutlined } from './HeatmapOutlined';
|
|
|
450
450
|
export { default as HeavyFogOutlined } from './HeavyFogOutlined';
|
|
451
451
|
export { default as HelmetFilled } from './HelmetFilled';
|
|
452
452
|
export { default as HelmetOutlined } from './HelmetOutlined';
|
|
453
|
+
export { default as HexagonOutlined } from './HexagonOutlined';
|
|
453
454
|
export { default as HiddenDangerFilled } from './HiddenDangerFilled';
|
|
454
455
|
export { default as HighAltitudeCruiseOutlined } from './HighAltitudeCruiseOutlined';
|
|
455
456
|
export { default as HighSpeedBayonetFilled } from './HighSpeedBayonetFilled';
|
|
@@ -829,6 +830,7 @@ export { default as SearchProOutlined } from './SearchProOutlined';
|
|
|
829
830
|
export { default as SecurityCenterOutlined } from './SecurityCenterOutlined';
|
|
830
831
|
export { default as SecurityGuardOutlined } from './SecurityGuardOutlined';
|
|
831
832
|
export { default as SemanticSearchOutlined } from './SemanticSearchOutlined';
|
|
833
|
+
export { default as SendFilled } from './SendFilled';
|
|
832
834
|
export { default as SerialNumberOutlined } from './SerialNumberOutlined';
|
|
833
835
|
export { default as Service24HourOutlined } from './Service24HourOutlined';
|
|
834
836
|
export { default as ServiceCardFilled } from './ServiceCardFilled';
|
package/lib/icons/index.js
CHANGED
|
@@ -481,6 +481,7 @@ __export(icons_exports, {
|
|
|
481
481
|
HeavyFogOutlined: () => import_HeavyFogOutlined.default,
|
|
482
482
|
HelmetFilled: () => import_HelmetFilled.default,
|
|
483
483
|
HelmetOutlined: () => import_HelmetOutlined.default,
|
|
484
|
+
HexagonOutlined: () => import_HexagonOutlined.default,
|
|
484
485
|
HiddenDangerFilled: () => import_HiddenDangerFilled.default,
|
|
485
486
|
HighAltitudeCruiseOutlined: () => import_HighAltitudeCruiseOutlined.default,
|
|
486
487
|
HighSpeedBayonetFilled: () => import_HighSpeedBayonetFilled.default,
|
|
@@ -860,6 +861,7 @@ __export(icons_exports, {
|
|
|
860
861
|
SecurityCenterOutlined: () => import_SecurityCenterOutlined.default,
|
|
861
862
|
SecurityGuardOutlined: () => import_SecurityGuardOutlined.default,
|
|
862
863
|
SemanticSearchOutlined: () => import_SemanticSearchOutlined.default,
|
|
864
|
+
SendFilled: () => import_SendFilled.default,
|
|
863
865
|
SerialNumberOutlined: () => import_SerialNumberOutlined.default,
|
|
864
866
|
Service24HourOutlined: () => import_Service24HourOutlined.default,
|
|
865
867
|
ServiceCardFilled: () => import_ServiceCardFilled.default,
|
|
@@ -1542,6 +1544,7 @@ var import_HeatmapOutlined = __toESM(require("./HeatmapOutlined"));
|
|
|
1542
1544
|
var import_HeavyFogOutlined = __toESM(require("./HeavyFogOutlined"));
|
|
1543
1545
|
var import_HelmetFilled = __toESM(require("./HelmetFilled"));
|
|
1544
1546
|
var import_HelmetOutlined = __toESM(require("./HelmetOutlined"));
|
|
1547
|
+
var import_HexagonOutlined = __toESM(require("./HexagonOutlined"));
|
|
1545
1548
|
var import_HiddenDangerFilled = __toESM(require("./HiddenDangerFilled"));
|
|
1546
1549
|
var import_HighAltitudeCruiseOutlined = __toESM(require("./HighAltitudeCruiseOutlined"));
|
|
1547
1550
|
var import_HighSpeedBayonetFilled = __toESM(require("./HighSpeedBayonetFilled"));
|
|
@@ -1921,6 +1924,7 @@ var import_SearchProOutlined = __toESM(require("./SearchProOutlined"));
|
|
|
1921
1924
|
var import_SecurityCenterOutlined = __toESM(require("./SecurityCenterOutlined"));
|
|
1922
1925
|
var import_SecurityGuardOutlined = __toESM(require("./SecurityGuardOutlined"));
|
|
1923
1926
|
var import_SemanticSearchOutlined = __toESM(require("./SemanticSearchOutlined"));
|
|
1927
|
+
var import_SendFilled = __toESM(require("./SendFilled"));
|
|
1924
1928
|
var import_SerialNumberOutlined = __toESM(require("./SerialNumberOutlined"));
|
|
1925
1929
|
var import_Service24HourOutlined = __toESM(require("./Service24HourOutlined"));
|
|
1926
1930
|
var import_ServiceCardFilled = __toESM(require("./ServiceCardFilled"));
|
|
@@ -2603,6 +2607,7 @@ var import_ZoomPlusOutlined = __toESM(require("./ZoomPlusOutlined"));
|
|
|
2603
2607
|
HeavyFogOutlined,
|
|
2604
2608
|
HelmetFilled,
|
|
2605
2609
|
HelmetOutlined,
|
|
2610
|
+
HexagonOutlined,
|
|
2606
2611
|
HiddenDangerFilled,
|
|
2607
2612
|
HighAltitudeCruiseOutlined,
|
|
2608
2613
|
HighSpeedBayonetFilled,
|
|
@@ -2982,6 +2987,7 @@ var import_ZoomPlusOutlined = __toESM(require("./ZoomPlusOutlined"));
|
|
|
2982
2987
|
SecurityCenterOutlined,
|
|
2983
2988
|
SecurityGuardOutlined,
|
|
2984
2989
|
SemanticSearchOutlined,
|
|
2990
|
+
SendFilled,
|
|
2985
2991
|
SerialNumberOutlined,
|
|
2986
2992
|
Service24HourOutlined,
|
|
2987
2993
|
ServiceCardFilled,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sensoro-design/icons",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.83.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.83.0"
|
|
31
31
|
},
|
|
32
32
|
"publishConfig": {
|
|
33
33
|
"access": "public"
|