@sensoro-design/icons 2.67.0 → 2.69.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/ChargeOutlined.d.ts +2 -0
- package/ChargeOutlined.js +16 -0
- package/FineTuningOutlined.d.ts +2 -0
- package/FineTuningOutlined.js +16 -0
- package/es/icons/ChargeOutlined.d.ts +4 -0
- package/es/icons/ChargeOutlined.js +14 -0
- package/es/icons/FineTuningOutlined.d.ts +4 -0
- package/es/icons/FineTuningOutlined.js +14 -0
- package/es/icons/index.d.ts +2 -0
- package/es/icons/index.js +2 -0
- package/lib/icons/ChargeOutlined.d.ts +4 -0
- package/lib/icons/ChargeOutlined.js +41 -0
- package/lib/icons/FineTuningOutlined.d.ts +4 -0
- package/lib/icons/FineTuningOutlined.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.69.0](https://github.com/sensoro-design/sensoro-design-icons/compare/v2.68.0...v2.69.0) (2024-09-05)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* add FineTuningOutlined ([67af36f](https://github.com/sensoro-design/sensoro-design-icons/commit/67af36f736391c01223de86ee676b4841d291cc6))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [2.68.0](https://github.com/sensoro-design/sensoro-design-icons/compare/v2.67.0...v2.68.0) (2024-09-05)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* add ChargeOutlined ([60d0d91](https://github.com/sensoro-design/sensoro-design-icons/commit/60d0d9184d99c5fafa858c0230065e5c147ddb4b))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
6
28
|
# [2.67.0](https://github.com/sensoro-design/sensoro-design-icons/compare/v2.66.1...v2.67.0) (2024-09-05)
|
|
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 _ChargeOutlined = _interopRequireDefault(require('./es/icons/ChargeOutlined'));
|
|
11
|
+
|
|
12
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
|
|
13
|
+
|
|
14
|
+
var _default = _ChargeOutlined;
|
|
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 _FineTuningOutlined = _interopRequireDefault(require('./es/icons/FineTuningOutlined'));
|
|
11
|
+
|
|
12
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
|
|
13
|
+
|
|
14
|
+
var _default = _FineTuningOutlined;
|
|
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 ChargeOutlinedSvg from '@sensoro-design/icons-svg/es/asn/ChargeOutlined';
|
|
5
|
+
import SensoroIcon from "../components/SensoroIcon";
|
|
6
|
+
var ChargeOutlined = function ChargeOutlined(props, ref) {
|
|
7
|
+
return /*#__PURE__*/React.createElement(SensoroIcon, _extends({}, props, {
|
|
8
|
+
ref: ref,
|
|
9
|
+
icon: ChargeOutlinedSvg
|
|
10
|
+
}));
|
|
11
|
+
};
|
|
12
|
+
var RefIcon = /*#__PURE__*/React.forwardRef(ChargeOutlined);
|
|
13
|
+
RefIcon.displayName = 'ChargeOutlined';
|
|
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 FineTuningOutlinedSvg from '@sensoro-design/icons-svg/es/asn/FineTuningOutlined';
|
|
5
|
+
import SensoroIcon from "../components/SensoroIcon";
|
|
6
|
+
var FineTuningOutlined = function FineTuningOutlined(props, ref) {
|
|
7
|
+
return /*#__PURE__*/React.createElement(SensoroIcon, _extends({}, props, {
|
|
8
|
+
ref: ref,
|
|
9
|
+
icon: FineTuningOutlinedSvg
|
|
10
|
+
}));
|
|
11
|
+
};
|
|
12
|
+
var RefIcon = /*#__PURE__*/React.forwardRef(FineTuningOutlined);
|
|
13
|
+
RefIcon.displayName = 'FineTuningOutlined';
|
|
14
|
+
export default RefIcon;
|
package/es/icons/index.d.ts
CHANGED
|
@@ -138,6 +138,7 @@ export { default as CateringFilled } from './CateringFilled';
|
|
|
138
138
|
export { default as CateringOutlined } from './CateringOutlined';
|
|
139
139
|
export { default as CellularDiagramFilled } from './CellularDiagramFilled';
|
|
140
140
|
export { default as Ch4Outlined } from './Ch4Outlined';
|
|
141
|
+
export { default as ChargeOutlined } from './ChargeOutlined';
|
|
141
142
|
export { default as CheckCircleFilled } from './CheckCircleFilled';
|
|
142
143
|
export { default as CheckCircleOutlined } from './CheckCircleOutlined';
|
|
143
144
|
export { default as CheckOutlined } from './CheckOutlined';
|
|
@@ -325,6 +326,7 @@ export { default as FileZipOutlined } from './FileZipOutlined';
|
|
|
325
326
|
export { default as FilterFilled } from './FilterFilled';
|
|
326
327
|
export { default as FilterOutlined } from './FilterOutlined';
|
|
327
328
|
export { default as FineTuneOutlined } from './FineTuneOutlined';
|
|
329
|
+
export { default as FineTuningOutlined } from './FineTuningOutlined';
|
|
328
330
|
export { default as FireBreakerFilled } from './FireBreakerFilled';
|
|
329
331
|
export { default as FireBrigadeFilled } from './FireBrigadeFilled';
|
|
330
332
|
export { default as FireBrigadeOutlined } from './FireBrigadeOutlined';
|
package/es/icons/index.js
CHANGED
|
@@ -139,6 +139,7 @@ export { default as CateringFilled } from "./CateringFilled";
|
|
|
139
139
|
export { default as CateringOutlined } from "./CateringOutlined";
|
|
140
140
|
export { default as CellularDiagramFilled } from "./CellularDiagramFilled";
|
|
141
141
|
export { default as Ch4Outlined } from "./Ch4Outlined";
|
|
142
|
+
export { default as ChargeOutlined } from "./ChargeOutlined";
|
|
142
143
|
export { default as CheckCircleFilled } from "./CheckCircleFilled";
|
|
143
144
|
export { default as CheckCircleOutlined } from "./CheckCircleOutlined";
|
|
144
145
|
export { default as CheckOutlined } from "./CheckOutlined";
|
|
@@ -326,6 +327,7 @@ export { default as FileZipOutlined } from "./FileZipOutlined";
|
|
|
326
327
|
export { default as FilterFilled } from "./FilterFilled";
|
|
327
328
|
export { default as FilterOutlined } from "./FilterOutlined";
|
|
328
329
|
export { default as FineTuneOutlined } from "./FineTuneOutlined";
|
|
330
|
+
export { default as FineTuningOutlined } from "./FineTuningOutlined";
|
|
329
331
|
export { default as FireBreakerFilled } from "./FireBreakerFilled";
|
|
330
332
|
export { default as FireBrigadeFilled } from "./FireBrigadeFilled";
|
|
331
333
|
export { default as FireBrigadeOutlined } from "./FireBrigadeOutlined";
|
|
@@ -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/ChargeOutlined.tsx
|
|
30
|
+
var ChargeOutlined_exports = {};
|
|
31
|
+
__export(ChargeOutlined_exports, {
|
|
32
|
+
default: () => ChargeOutlined_default
|
|
33
|
+
});
|
|
34
|
+
module.exports = __toCommonJS(ChargeOutlined_exports);
|
|
35
|
+
var React = __toESM(require("react"));
|
|
36
|
+
var import_ChargeOutlined = __toESM(require("@sensoro-design/icons-svg/es/asn/ChargeOutlined"));
|
|
37
|
+
var import_SensoroIcon = __toESM(require("../components/SensoroIcon"));
|
|
38
|
+
var ChargeOutlined = (props, ref) => /* @__PURE__ */ React.createElement(import_SensoroIcon.default, { ...props, ref, icon: import_ChargeOutlined.default });
|
|
39
|
+
var RefIcon = React.forwardRef(ChargeOutlined);
|
|
40
|
+
RefIcon.displayName = "ChargeOutlined";
|
|
41
|
+
var ChargeOutlined_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/FineTuningOutlined.tsx
|
|
30
|
+
var FineTuningOutlined_exports = {};
|
|
31
|
+
__export(FineTuningOutlined_exports, {
|
|
32
|
+
default: () => FineTuningOutlined_default
|
|
33
|
+
});
|
|
34
|
+
module.exports = __toCommonJS(FineTuningOutlined_exports);
|
|
35
|
+
var React = __toESM(require("react"));
|
|
36
|
+
var import_FineTuningOutlined = __toESM(require("@sensoro-design/icons-svg/es/asn/FineTuningOutlined"));
|
|
37
|
+
var import_SensoroIcon = __toESM(require("../components/SensoroIcon"));
|
|
38
|
+
var FineTuningOutlined = (props, ref) => /* @__PURE__ */ React.createElement(import_SensoroIcon.default, { ...props, ref, icon: import_FineTuningOutlined.default });
|
|
39
|
+
var RefIcon = React.forwardRef(FineTuningOutlined);
|
|
40
|
+
RefIcon.displayName = "FineTuningOutlined";
|
|
41
|
+
var FineTuningOutlined_default = RefIcon;
|
package/lib/icons/index.d.ts
CHANGED
|
@@ -138,6 +138,7 @@ export { default as CateringFilled } from './CateringFilled';
|
|
|
138
138
|
export { default as CateringOutlined } from './CateringOutlined';
|
|
139
139
|
export { default as CellularDiagramFilled } from './CellularDiagramFilled';
|
|
140
140
|
export { default as Ch4Outlined } from './Ch4Outlined';
|
|
141
|
+
export { default as ChargeOutlined } from './ChargeOutlined';
|
|
141
142
|
export { default as CheckCircleFilled } from './CheckCircleFilled';
|
|
142
143
|
export { default as CheckCircleOutlined } from './CheckCircleOutlined';
|
|
143
144
|
export { default as CheckOutlined } from './CheckOutlined';
|
|
@@ -325,6 +326,7 @@ export { default as FileZipOutlined } from './FileZipOutlined';
|
|
|
325
326
|
export { default as FilterFilled } from './FilterFilled';
|
|
326
327
|
export { default as FilterOutlined } from './FilterOutlined';
|
|
327
328
|
export { default as FineTuneOutlined } from './FineTuneOutlined';
|
|
329
|
+
export { default as FineTuningOutlined } from './FineTuningOutlined';
|
|
328
330
|
export { default as FireBreakerFilled } from './FireBreakerFilled';
|
|
329
331
|
export { default as FireBrigadeFilled } from './FireBrigadeFilled';
|
|
330
332
|
export { default as FireBrigadeOutlined } from './FireBrigadeOutlined';
|
package/lib/icons/index.js
CHANGED
|
@@ -169,6 +169,7 @@ __export(icons_exports, {
|
|
|
169
169
|
CateringOutlined: () => import_CateringOutlined.default,
|
|
170
170
|
CellularDiagramFilled: () => import_CellularDiagramFilled.default,
|
|
171
171
|
Ch4Outlined: () => import_Ch4Outlined.default,
|
|
172
|
+
ChargeOutlined: () => import_ChargeOutlined.default,
|
|
172
173
|
CheckCircleFilled: () => import_CheckCircleFilled.default,
|
|
173
174
|
CheckCircleOutlined: () => import_CheckCircleOutlined.default,
|
|
174
175
|
CheckOutlined: () => import_CheckOutlined.default,
|
|
@@ -356,6 +357,7 @@ __export(icons_exports, {
|
|
|
356
357
|
FilterFilled: () => import_FilterFilled.default,
|
|
357
358
|
FilterOutlined: () => import_FilterOutlined.default,
|
|
358
359
|
FineTuneOutlined: () => import_FineTuneOutlined.default,
|
|
360
|
+
FineTuningOutlined: () => import_FineTuningOutlined.default,
|
|
359
361
|
FireBreakerFilled: () => import_FireBreakerFilled.default,
|
|
360
362
|
FireBrigadeFilled: () => import_FireBrigadeFilled.default,
|
|
361
363
|
FireBrigadeOutlined: () => import_FireBrigadeOutlined.default,
|
|
@@ -1190,6 +1192,7 @@ var import_CateringFilled = __toESM(require("./CateringFilled"));
|
|
|
1190
1192
|
var import_CateringOutlined = __toESM(require("./CateringOutlined"));
|
|
1191
1193
|
var import_CellularDiagramFilled = __toESM(require("./CellularDiagramFilled"));
|
|
1192
1194
|
var import_Ch4Outlined = __toESM(require("./Ch4Outlined"));
|
|
1195
|
+
var import_ChargeOutlined = __toESM(require("./ChargeOutlined"));
|
|
1193
1196
|
var import_CheckCircleFilled = __toESM(require("./CheckCircleFilled"));
|
|
1194
1197
|
var import_CheckCircleOutlined = __toESM(require("./CheckCircleOutlined"));
|
|
1195
1198
|
var import_CheckOutlined = __toESM(require("./CheckOutlined"));
|
|
@@ -1377,6 +1380,7 @@ var import_FileZipOutlined = __toESM(require("./FileZipOutlined"));
|
|
|
1377
1380
|
var import_FilterFilled = __toESM(require("./FilterFilled"));
|
|
1378
1381
|
var import_FilterOutlined = __toESM(require("./FilterOutlined"));
|
|
1379
1382
|
var import_FineTuneOutlined = __toESM(require("./FineTuneOutlined"));
|
|
1383
|
+
var import_FineTuningOutlined = __toESM(require("./FineTuningOutlined"));
|
|
1380
1384
|
var import_FireBreakerFilled = __toESM(require("./FireBreakerFilled"));
|
|
1381
1385
|
var import_FireBrigadeFilled = __toESM(require("./FireBrigadeFilled"));
|
|
1382
1386
|
var import_FireBrigadeOutlined = __toESM(require("./FireBrigadeOutlined"));
|
|
@@ -2211,6 +2215,7 @@ var import_ZoomPlusOutlined = __toESM(require("./ZoomPlusOutlined"));
|
|
|
2211
2215
|
CateringOutlined,
|
|
2212
2216
|
CellularDiagramFilled,
|
|
2213
2217
|
Ch4Outlined,
|
|
2218
|
+
ChargeOutlined,
|
|
2214
2219
|
CheckCircleFilled,
|
|
2215
2220
|
CheckCircleOutlined,
|
|
2216
2221
|
CheckOutlined,
|
|
@@ -2398,6 +2403,7 @@ var import_ZoomPlusOutlined = __toESM(require("./ZoomPlusOutlined"));
|
|
|
2398
2403
|
FilterFilled,
|
|
2399
2404
|
FilterOutlined,
|
|
2400
2405
|
FineTuneOutlined,
|
|
2406
|
+
FineTuningOutlined,
|
|
2401
2407
|
FireBreakerFilled,
|
|
2402
2408
|
FireBrigadeFilled,
|
|
2403
2409
|
FireBrigadeOutlined,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sensoro-design/icons",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.69.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.69.0"
|
|
31
31
|
},
|
|
32
32
|
"publishConfig": {
|
|
33
33
|
"access": "public"
|