@sensoro-design/icons 2.73.1 → 2.74.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 +11 -0
- package/ClosureOutlined.d.ts +2 -0
- package/ClosureOutlined.js +16 -0
- package/DroneAirportOpenOutlined.d.ts +2 -0
- package/DroneAirportOpenOutlined.js +16 -0
- package/es/icons/ClosureOutlined.d.ts +4 -0
- package/es/icons/ClosureOutlined.js +14 -0
- package/es/icons/DroneAirportOpenOutlined.d.ts +4 -0
- package/es/icons/DroneAirportOpenOutlined.js +14 -0
- package/es/icons/index.d.ts +2 -0
- package/es/icons/index.js +2 -0
- package/lib/icons/ClosureOutlined.d.ts +4 -0
- package/lib/icons/ClosureOutlined.js +41 -0
- package/lib/icons/DroneAirportOpenOutlined.d.ts +4 -0
- package/lib/icons/DroneAirportOpenOutlined.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,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.74.0](https://github.com/sensoro-design/sensoro-design-icons/compare/v2.73.1...v2.74.0) (2024-12-11)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* add ClosureOutlined、DroneAirportOpenOutlined ([8b3d2b8](https://github.com/sensoro-design/sensoro-design-icons/commit/8b3d2b8aed248a7d5962dec2cb0e01f4b08e1ee1))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## [2.73.1](https://github.com/sensoro-design/sensoro-design-icons/compare/v2.73.0...v2.73.1) (2024-11-07)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @sensoro-design/icons
|
|
@@ -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 _ClosureOutlined = _interopRequireDefault(require('./es/icons/ClosureOutlined'));
|
|
11
|
+
|
|
12
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
|
|
13
|
+
|
|
14
|
+
var _default = _ClosureOutlined;
|
|
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 _DroneAirportOpenOutlined = _interopRequireDefault(require('./es/icons/DroneAirportOpenOutlined'));
|
|
11
|
+
|
|
12
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
|
|
13
|
+
|
|
14
|
+
var _default = _DroneAirportOpenOutlined;
|
|
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 ClosureOutlinedSvg from '@sensoro-design/icons-svg/es/asn/ClosureOutlined';
|
|
5
|
+
import SensoroIcon from "../components/SensoroIcon";
|
|
6
|
+
var ClosureOutlined = function ClosureOutlined(props, ref) {
|
|
7
|
+
return /*#__PURE__*/React.createElement(SensoroIcon, _extends({}, props, {
|
|
8
|
+
ref: ref,
|
|
9
|
+
icon: ClosureOutlinedSvg
|
|
10
|
+
}));
|
|
11
|
+
};
|
|
12
|
+
var RefIcon = /*#__PURE__*/React.forwardRef(ClosureOutlined);
|
|
13
|
+
RefIcon.displayName = 'ClosureOutlined';
|
|
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 DroneAirportOpenOutlinedSvg from '@sensoro-design/icons-svg/es/asn/DroneAirportOpenOutlined';
|
|
5
|
+
import SensoroIcon from "../components/SensoroIcon";
|
|
6
|
+
var DroneAirportOpenOutlined = function DroneAirportOpenOutlined(props, ref) {
|
|
7
|
+
return /*#__PURE__*/React.createElement(SensoroIcon, _extends({}, props, {
|
|
8
|
+
ref: ref,
|
|
9
|
+
icon: DroneAirportOpenOutlinedSvg
|
|
10
|
+
}));
|
|
11
|
+
};
|
|
12
|
+
var RefIcon = /*#__PURE__*/React.forwardRef(DroneAirportOpenOutlined);
|
|
13
|
+
RefIcon.displayName = 'DroneAirportOpenOutlined';
|
|
14
|
+
export default RefIcon;
|
package/es/icons/index.d.ts
CHANGED
|
@@ -161,6 +161,7 @@ export { default as CloseCircleOutlined } from './CloseCircleOutlined';
|
|
|
161
161
|
export { default as CloseOutlined } from './CloseOutlined';
|
|
162
162
|
export { default as CloseSquareFilled } from './CloseSquareFilled';
|
|
163
163
|
export { default as CloseSquareOutlined } from './CloseSquareOutlined';
|
|
164
|
+
export { default as ClosureOutlined } from './ClosureOutlined';
|
|
164
165
|
export { default as CloudFilled } from './CloudFilled';
|
|
165
166
|
export { default as CloudOutlined } from './CloudOutlined';
|
|
166
167
|
export { default as Co2Outlined } from './Co2Outlined';
|
|
@@ -232,6 +233,7 @@ export { default as DrawRectangleOutlined } from './DrawRectangleOutlined';
|
|
|
232
233
|
export { default as DrawRoundOutlined } from './DrawRoundOutlined';
|
|
233
234
|
export { default as DrinkWaterPointOutlined } from './DrinkWaterPointOutlined';
|
|
234
235
|
export { default as DriveRecorderOutlined } from './DriveRecorderOutlined';
|
|
236
|
+
export { default as DroneAirportOpenOutlined } from './DroneAirportOpenOutlined';
|
|
235
237
|
export { default as DroneAirportOutlined } from './DroneAirportOutlined';
|
|
236
238
|
export { default as DroneFilled } from './DroneFilled';
|
|
237
239
|
export { default as DroneOutlined } from './DroneOutlined';
|
package/es/icons/index.js
CHANGED
|
@@ -162,6 +162,7 @@ export { default as CloseCircleOutlined } from "./CloseCircleOutlined";
|
|
|
162
162
|
export { default as CloseOutlined } from "./CloseOutlined";
|
|
163
163
|
export { default as CloseSquareFilled } from "./CloseSquareFilled";
|
|
164
164
|
export { default as CloseSquareOutlined } from "./CloseSquareOutlined";
|
|
165
|
+
export { default as ClosureOutlined } from "./ClosureOutlined";
|
|
165
166
|
export { default as CloudFilled } from "./CloudFilled";
|
|
166
167
|
export { default as CloudOutlined } from "./CloudOutlined";
|
|
167
168
|
export { default as Co2Outlined } from "./Co2Outlined";
|
|
@@ -233,6 +234,7 @@ export { default as DrawRectangleOutlined } from "./DrawRectangleOutlined";
|
|
|
233
234
|
export { default as DrawRoundOutlined } from "./DrawRoundOutlined";
|
|
234
235
|
export { default as DrinkWaterPointOutlined } from "./DrinkWaterPointOutlined";
|
|
235
236
|
export { default as DriveRecorderOutlined } from "./DriveRecorderOutlined";
|
|
237
|
+
export { default as DroneAirportOpenOutlined } from "./DroneAirportOpenOutlined";
|
|
236
238
|
export { default as DroneAirportOutlined } from "./DroneAirportOutlined";
|
|
237
239
|
export { default as DroneFilled } from "./DroneFilled";
|
|
238
240
|
export { default as DroneOutlined } from "./DroneOutlined";
|
|
@@ -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/ClosureOutlined.tsx
|
|
30
|
+
var ClosureOutlined_exports = {};
|
|
31
|
+
__export(ClosureOutlined_exports, {
|
|
32
|
+
default: () => ClosureOutlined_default
|
|
33
|
+
});
|
|
34
|
+
module.exports = __toCommonJS(ClosureOutlined_exports);
|
|
35
|
+
var React = __toESM(require("react"));
|
|
36
|
+
var import_ClosureOutlined = __toESM(require("@sensoro-design/icons-svg/es/asn/ClosureOutlined"));
|
|
37
|
+
var import_SensoroIcon = __toESM(require("../components/SensoroIcon"));
|
|
38
|
+
var ClosureOutlined = (props, ref) => /* @__PURE__ */ React.createElement(import_SensoroIcon.default, { ...props, ref, icon: import_ClosureOutlined.default });
|
|
39
|
+
var RefIcon = React.forwardRef(ClosureOutlined);
|
|
40
|
+
RefIcon.displayName = "ClosureOutlined";
|
|
41
|
+
var ClosureOutlined_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/DroneAirportOpenOutlined.tsx
|
|
30
|
+
var DroneAirportOpenOutlined_exports = {};
|
|
31
|
+
__export(DroneAirportOpenOutlined_exports, {
|
|
32
|
+
default: () => DroneAirportOpenOutlined_default
|
|
33
|
+
});
|
|
34
|
+
module.exports = __toCommonJS(DroneAirportOpenOutlined_exports);
|
|
35
|
+
var React = __toESM(require("react"));
|
|
36
|
+
var import_DroneAirportOpenOutlined = __toESM(require("@sensoro-design/icons-svg/es/asn/DroneAirportOpenOutlined"));
|
|
37
|
+
var import_SensoroIcon = __toESM(require("../components/SensoroIcon"));
|
|
38
|
+
var DroneAirportOpenOutlined = (props, ref) => /* @__PURE__ */ React.createElement(import_SensoroIcon.default, { ...props, ref, icon: import_DroneAirportOpenOutlined.default });
|
|
39
|
+
var RefIcon = React.forwardRef(DroneAirportOpenOutlined);
|
|
40
|
+
RefIcon.displayName = "DroneAirportOpenOutlined";
|
|
41
|
+
var DroneAirportOpenOutlined_default = RefIcon;
|
package/lib/icons/index.d.ts
CHANGED
|
@@ -161,6 +161,7 @@ export { default as CloseCircleOutlined } from './CloseCircleOutlined';
|
|
|
161
161
|
export { default as CloseOutlined } from './CloseOutlined';
|
|
162
162
|
export { default as CloseSquareFilled } from './CloseSquareFilled';
|
|
163
163
|
export { default as CloseSquareOutlined } from './CloseSquareOutlined';
|
|
164
|
+
export { default as ClosureOutlined } from './ClosureOutlined';
|
|
164
165
|
export { default as CloudFilled } from './CloudFilled';
|
|
165
166
|
export { default as CloudOutlined } from './CloudOutlined';
|
|
166
167
|
export { default as Co2Outlined } from './Co2Outlined';
|
|
@@ -232,6 +233,7 @@ export { default as DrawRectangleOutlined } from './DrawRectangleOutlined';
|
|
|
232
233
|
export { default as DrawRoundOutlined } from './DrawRoundOutlined';
|
|
233
234
|
export { default as DrinkWaterPointOutlined } from './DrinkWaterPointOutlined';
|
|
234
235
|
export { default as DriveRecorderOutlined } from './DriveRecorderOutlined';
|
|
236
|
+
export { default as DroneAirportOpenOutlined } from './DroneAirportOpenOutlined';
|
|
235
237
|
export { default as DroneAirportOutlined } from './DroneAirportOutlined';
|
|
236
238
|
export { default as DroneFilled } from './DroneFilled';
|
|
237
239
|
export { default as DroneOutlined } from './DroneOutlined';
|
package/lib/icons/index.js
CHANGED
|
@@ -192,6 +192,7 @@ __export(icons_exports, {
|
|
|
192
192
|
CloseOutlined: () => import_CloseOutlined.default,
|
|
193
193
|
CloseSquareFilled: () => import_CloseSquareFilled.default,
|
|
194
194
|
CloseSquareOutlined: () => import_CloseSquareOutlined.default,
|
|
195
|
+
ClosureOutlined: () => import_ClosureOutlined.default,
|
|
195
196
|
CloudFilled: () => import_CloudFilled.default,
|
|
196
197
|
CloudOutlined: () => import_CloudOutlined.default,
|
|
197
198
|
Co2Outlined: () => import_Co2Outlined.default,
|
|
@@ -263,6 +264,7 @@ __export(icons_exports, {
|
|
|
263
264
|
DrawRoundOutlined: () => import_DrawRoundOutlined.default,
|
|
264
265
|
DrinkWaterPointOutlined: () => import_DrinkWaterPointOutlined.default,
|
|
265
266
|
DriveRecorderOutlined: () => import_DriveRecorderOutlined.default,
|
|
267
|
+
DroneAirportOpenOutlined: () => import_DroneAirportOpenOutlined.default,
|
|
266
268
|
DroneAirportOutlined: () => import_DroneAirportOutlined.default,
|
|
267
269
|
DroneFilled: () => import_DroneFilled.default,
|
|
268
270
|
DroneOutlined: () => import_DroneOutlined.default,
|
|
@@ -1227,6 +1229,7 @@ var import_CloseCircleOutlined = __toESM(require("./CloseCircleOutlined"));
|
|
|
1227
1229
|
var import_CloseOutlined = __toESM(require("./CloseOutlined"));
|
|
1228
1230
|
var import_CloseSquareFilled = __toESM(require("./CloseSquareFilled"));
|
|
1229
1231
|
var import_CloseSquareOutlined = __toESM(require("./CloseSquareOutlined"));
|
|
1232
|
+
var import_ClosureOutlined = __toESM(require("./ClosureOutlined"));
|
|
1230
1233
|
var import_CloudFilled = __toESM(require("./CloudFilled"));
|
|
1231
1234
|
var import_CloudOutlined = __toESM(require("./CloudOutlined"));
|
|
1232
1235
|
var import_Co2Outlined = __toESM(require("./Co2Outlined"));
|
|
@@ -1298,6 +1301,7 @@ var import_DrawRectangleOutlined = __toESM(require("./DrawRectangleOutlined"));
|
|
|
1298
1301
|
var import_DrawRoundOutlined = __toESM(require("./DrawRoundOutlined"));
|
|
1299
1302
|
var import_DrinkWaterPointOutlined = __toESM(require("./DrinkWaterPointOutlined"));
|
|
1300
1303
|
var import_DriveRecorderOutlined = __toESM(require("./DriveRecorderOutlined"));
|
|
1304
|
+
var import_DroneAirportOpenOutlined = __toESM(require("./DroneAirportOpenOutlined"));
|
|
1301
1305
|
var import_DroneAirportOutlined = __toESM(require("./DroneAirportOutlined"));
|
|
1302
1306
|
var import_DroneFilled = __toESM(require("./DroneFilled"));
|
|
1303
1307
|
var import_DroneOutlined = __toESM(require("./DroneOutlined"));
|
|
@@ -2262,6 +2266,7 @@ var import_ZoomPlusOutlined = __toESM(require("./ZoomPlusOutlined"));
|
|
|
2262
2266
|
CloseOutlined,
|
|
2263
2267
|
CloseSquareFilled,
|
|
2264
2268
|
CloseSquareOutlined,
|
|
2269
|
+
ClosureOutlined,
|
|
2265
2270
|
CloudFilled,
|
|
2266
2271
|
CloudOutlined,
|
|
2267
2272
|
Co2Outlined,
|
|
@@ -2333,6 +2338,7 @@ var import_ZoomPlusOutlined = __toESM(require("./ZoomPlusOutlined"));
|
|
|
2333
2338
|
DrawRoundOutlined,
|
|
2334
2339
|
DrinkWaterPointOutlined,
|
|
2335
2340
|
DriveRecorderOutlined,
|
|
2341
|
+
DroneAirportOpenOutlined,
|
|
2336
2342
|
DroneAirportOutlined,
|
|
2337
2343
|
DroneFilled,
|
|
2338
2344
|
DroneOutlined,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sensoro-design/icons",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.74.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.74.0"
|
|
31
31
|
},
|
|
32
32
|
"publishConfig": {
|
|
33
33
|
"access": "public"
|