@sensoro-design/icons 2.95.0 → 2.96.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/AiConfigOutlined.d.ts +2 -0
- package/AiConfigOutlined.js +16 -0
- package/CHANGELOG.md +11 -0
- package/DislikeOutlined.d.ts +2 -0
- package/DislikeOutlined.js +16 -0
- package/es/icons/AiConfigOutlined.d.ts +4 -0
- package/es/icons/AiConfigOutlined.js +14 -0
- package/es/icons/DislikeOutlined.d.ts +4 -0
- package/es/icons/DislikeOutlined.js +14 -0
- package/es/icons/index.d.ts +2 -0
- package/es/icons/index.js +2 -0
- package/lib/icons/AiConfigOutlined.d.ts +4 -0
- package/lib/icons/AiConfigOutlined.js +41 -0
- package/lib/icons/DislikeOutlined.d.ts +4 -0
- package/lib/icons/DislikeOutlined.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 _AiConfigOutlined = _interopRequireDefault(require('./es/icons/AiConfigOutlined'));
|
|
11
|
+
|
|
12
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
|
|
13
|
+
|
|
14
|
+
var _default = _AiConfigOutlined;
|
|
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.96.0](https://github.com/sensoro-design/sensoro-design-icons/compare/v2.95.0...v2.96.0) (2025-08-22)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* add AiConfigOutlined、DislikeOutlined; repalce LikeOutlined ([be99893](https://github.com/sensoro-design/sensoro-design-icons/commit/be99893fa33e2b2c380e37bed8f73eb0208decaa))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [2.95.0](https://github.com/sensoro-design/sensoro-design-icons/compare/v2.94.0...v2.95.0) (2025-08-04)
|
|
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 _DislikeOutlined = _interopRequireDefault(require('./es/icons/DislikeOutlined'));
|
|
11
|
+
|
|
12
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
|
|
13
|
+
|
|
14
|
+
var _default = _DislikeOutlined;
|
|
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 AiConfigOutlinedSvg from '@sensoro-design/icons-svg/es/asn/AiConfigOutlined';
|
|
5
|
+
import SensoroIcon from "../components/SensoroIcon";
|
|
6
|
+
var AiConfigOutlined = function AiConfigOutlined(props, ref) {
|
|
7
|
+
return /*#__PURE__*/React.createElement(SensoroIcon, _extends({}, props, {
|
|
8
|
+
ref: ref,
|
|
9
|
+
icon: AiConfigOutlinedSvg
|
|
10
|
+
}));
|
|
11
|
+
};
|
|
12
|
+
var RefIcon = /*#__PURE__*/React.forwardRef(AiConfigOutlined);
|
|
13
|
+
RefIcon.displayName = 'AiConfigOutlined';
|
|
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 DislikeOutlinedSvg from '@sensoro-design/icons-svg/es/asn/DislikeOutlined';
|
|
5
|
+
import SensoroIcon from "../components/SensoroIcon";
|
|
6
|
+
var DislikeOutlined = function DislikeOutlined(props, ref) {
|
|
7
|
+
return /*#__PURE__*/React.createElement(SensoroIcon, _extends({}, props, {
|
|
8
|
+
ref: ref,
|
|
9
|
+
icon: DislikeOutlinedSvg
|
|
10
|
+
}));
|
|
11
|
+
};
|
|
12
|
+
var RefIcon = /*#__PURE__*/React.forwardRef(DislikeOutlined);
|
|
13
|
+
RefIcon.displayName = 'DislikeOutlined';
|
|
14
|
+
export default RefIcon;
|
package/es/icons/index.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ export { default as AccountBookOutlined } from './AccountBookOutlined';
|
|
|
7
7
|
export { default as AccountBookTwoTone } from './AccountBookTwoTone';
|
|
8
8
|
export { default as AccountOutlined } from './AccountOutlined';
|
|
9
9
|
export { default as AddressOutlined } from './AddressOutlined';
|
|
10
|
+
export { default as AiConfigOutlined } from './AiConfigOutlined';
|
|
10
11
|
export { default as AiOutlined } from './AiOutlined';
|
|
11
12
|
export { default as AiSearchOutlined } from './AiSearchOutlined';
|
|
12
13
|
export { default as AimFilled } from './AimFilled';
|
|
@@ -223,6 +224,7 @@ export { default as DewOutlined } from './DewOutlined';
|
|
|
223
224
|
export { default as DigitalMediaFilled } from './DigitalMediaFilled';
|
|
224
225
|
export { default as DigitalMediaOutlined } from './DigitalMediaOutlined';
|
|
225
226
|
export { default as DirectedFlightOutlined } from './DirectedFlightOutlined';
|
|
227
|
+
export { default as DislikeOutlined } from './DislikeOutlined';
|
|
226
228
|
export { default as DistanceOutlined } from './DistanceOutlined';
|
|
227
229
|
export { default as DockFilled } from './DockFilled';
|
|
228
230
|
export { default as DockOutlined } from './DockOutlined';
|
package/es/icons/index.js
CHANGED
|
@@ -8,6 +8,7 @@ export { default as AccountBookOutlined } from "./AccountBookOutlined";
|
|
|
8
8
|
export { default as AccountBookTwoTone } from "./AccountBookTwoTone";
|
|
9
9
|
export { default as AccountOutlined } from "./AccountOutlined";
|
|
10
10
|
export { default as AddressOutlined } from "./AddressOutlined";
|
|
11
|
+
export { default as AiConfigOutlined } from "./AiConfigOutlined";
|
|
11
12
|
export { default as AiOutlined } from "./AiOutlined";
|
|
12
13
|
export { default as AiSearchOutlined } from "./AiSearchOutlined";
|
|
13
14
|
export { default as AimFilled } from "./AimFilled";
|
|
@@ -224,6 +225,7 @@ export { default as DewOutlined } from "./DewOutlined";
|
|
|
224
225
|
export { default as DigitalMediaFilled } from "./DigitalMediaFilled";
|
|
225
226
|
export { default as DigitalMediaOutlined } from "./DigitalMediaOutlined";
|
|
226
227
|
export { default as DirectedFlightOutlined } from "./DirectedFlightOutlined";
|
|
228
|
+
export { default as DislikeOutlined } from "./DislikeOutlined";
|
|
227
229
|
export { default as DistanceOutlined } from "./DistanceOutlined";
|
|
228
230
|
export { default as DockFilled } from "./DockFilled";
|
|
229
231
|
export { default as DockOutlined } from "./DockOutlined";
|
|
@@ -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/AiConfigOutlined.tsx
|
|
30
|
+
var AiConfigOutlined_exports = {};
|
|
31
|
+
__export(AiConfigOutlined_exports, {
|
|
32
|
+
default: () => AiConfigOutlined_default
|
|
33
|
+
});
|
|
34
|
+
module.exports = __toCommonJS(AiConfigOutlined_exports);
|
|
35
|
+
var React = __toESM(require("react"));
|
|
36
|
+
var import_AiConfigOutlined = __toESM(require("@sensoro-design/icons-svg/es/asn/AiConfigOutlined"));
|
|
37
|
+
var import_SensoroIcon = __toESM(require("../components/SensoroIcon"));
|
|
38
|
+
var AiConfigOutlined = (props, ref) => /* @__PURE__ */ React.createElement(import_SensoroIcon.default, { ...props, ref, icon: import_AiConfigOutlined.default });
|
|
39
|
+
var RefIcon = React.forwardRef(AiConfigOutlined);
|
|
40
|
+
RefIcon.displayName = "AiConfigOutlined";
|
|
41
|
+
var AiConfigOutlined_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/DislikeOutlined.tsx
|
|
30
|
+
var DislikeOutlined_exports = {};
|
|
31
|
+
__export(DislikeOutlined_exports, {
|
|
32
|
+
default: () => DislikeOutlined_default
|
|
33
|
+
});
|
|
34
|
+
module.exports = __toCommonJS(DislikeOutlined_exports);
|
|
35
|
+
var React = __toESM(require("react"));
|
|
36
|
+
var import_DislikeOutlined = __toESM(require("@sensoro-design/icons-svg/es/asn/DislikeOutlined"));
|
|
37
|
+
var import_SensoroIcon = __toESM(require("../components/SensoroIcon"));
|
|
38
|
+
var DislikeOutlined = (props, ref) => /* @__PURE__ */ React.createElement(import_SensoroIcon.default, { ...props, ref, icon: import_DislikeOutlined.default });
|
|
39
|
+
var RefIcon = React.forwardRef(DislikeOutlined);
|
|
40
|
+
RefIcon.displayName = "DislikeOutlined";
|
|
41
|
+
var DislikeOutlined_default = RefIcon;
|
package/lib/icons/index.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ export { default as AccountBookOutlined } from './AccountBookOutlined';
|
|
|
7
7
|
export { default as AccountBookTwoTone } from './AccountBookTwoTone';
|
|
8
8
|
export { default as AccountOutlined } from './AccountOutlined';
|
|
9
9
|
export { default as AddressOutlined } from './AddressOutlined';
|
|
10
|
+
export { default as AiConfigOutlined } from './AiConfigOutlined';
|
|
10
11
|
export { default as AiOutlined } from './AiOutlined';
|
|
11
12
|
export { default as AiSearchOutlined } from './AiSearchOutlined';
|
|
12
13
|
export { default as AimFilled } from './AimFilled';
|
|
@@ -223,6 +224,7 @@ export { default as DewOutlined } from './DewOutlined';
|
|
|
223
224
|
export { default as DigitalMediaFilled } from './DigitalMediaFilled';
|
|
224
225
|
export { default as DigitalMediaOutlined } from './DigitalMediaOutlined';
|
|
225
226
|
export { default as DirectedFlightOutlined } from './DirectedFlightOutlined';
|
|
227
|
+
export { default as DislikeOutlined } from './DislikeOutlined';
|
|
226
228
|
export { default as DistanceOutlined } from './DistanceOutlined';
|
|
227
229
|
export { default as DockFilled } from './DockFilled';
|
|
228
230
|
export { default as DockOutlined } from './DockOutlined';
|
package/lib/icons/index.js
CHANGED
|
@@ -38,6 +38,7 @@ __export(icons_exports, {
|
|
|
38
38
|
AccountBookTwoTone: () => import_AccountBookTwoTone.default,
|
|
39
39
|
AccountOutlined: () => import_AccountOutlined.default,
|
|
40
40
|
AddressOutlined: () => import_AddressOutlined.default,
|
|
41
|
+
AiConfigOutlined: () => import_AiConfigOutlined.default,
|
|
41
42
|
AiOutlined: () => import_AiOutlined.default,
|
|
42
43
|
AiSearchOutlined: () => import_AiSearchOutlined.default,
|
|
43
44
|
AimFilled: () => import_AimFilled.default,
|
|
@@ -254,6 +255,7 @@ __export(icons_exports, {
|
|
|
254
255
|
DigitalMediaFilled: () => import_DigitalMediaFilled.default,
|
|
255
256
|
DigitalMediaOutlined: () => import_DigitalMediaOutlined.default,
|
|
256
257
|
DirectedFlightOutlined: () => import_DirectedFlightOutlined.default,
|
|
258
|
+
DislikeOutlined: () => import_DislikeOutlined.default,
|
|
257
259
|
DistanceOutlined: () => import_DistanceOutlined.default,
|
|
258
260
|
DockFilled: () => import_DockFilled.default,
|
|
259
261
|
DockOutlined: () => import_DockOutlined.default,
|
|
@@ -1125,6 +1127,7 @@ var import_AccountBookOutlined = __toESM(require("./AccountBookOutlined"));
|
|
|
1125
1127
|
var import_AccountBookTwoTone = __toESM(require("./AccountBookTwoTone"));
|
|
1126
1128
|
var import_AccountOutlined = __toESM(require("./AccountOutlined"));
|
|
1127
1129
|
var import_AddressOutlined = __toESM(require("./AddressOutlined"));
|
|
1130
|
+
var import_AiConfigOutlined = __toESM(require("./AiConfigOutlined"));
|
|
1128
1131
|
var import_AiOutlined = __toESM(require("./AiOutlined"));
|
|
1129
1132
|
var import_AiSearchOutlined = __toESM(require("./AiSearchOutlined"));
|
|
1130
1133
|
var import_AimFilled = __toESM(require("./AimFilled"));
|
|
@@ -1341,6 +1344,7 @@ var import_DewOutlined = __toESM(require("./DewOutlined"));
|
|
|
1341
1344
|
var import_DigitalMediaFilled = __toESM(require("./DigitalMediaFilled"));
|
|
1342
1345
|
var import_DigitalMediaOutlined = __toESM(require("./DigitalMediaOutlined"));
|
|
1343
1346
|
var import_DirectedFlightOutlined = __toESM(require("./DirectedFlightOutlined"));
|
|
1347
|
+
var import_DislikeOutlined = __toESM(require("./DislikeOutlined"));
|
|
1344
1348
|
var import_DistanceOutlined = __toESM(require("./DistanceOutlined"));
|
|
1345
1349
|
var import_DockFilled = __toESM(require("./DockFilled"));
|
|
1346
1350
|
var import_DockOutlined = __toESM(require("./DockOutlined"));
|
|
@@ -2212,6 +2216,7 @@ var import_ZoomPlusOutlined = __toESM(require("./ZoomPlusOutlined"));
|
|
|
2212
2216
|
AccountBookTwoTone,
|
|
2213
2217
|
AccountOutlined,
|
|
2214
2218
|
AddressOutlined,
|
|
2219
|
+
AiConfigOutlined,
|
|
2215
2220
|
AiOutlined,
|
|
2216
2221
|
AiSearchOutlined,
|
|
2217
2222
|
AimFilled,
|
|
@@ -2428,6 +2433,7 @@ var import_ZoomPlusOutlined = __toESM(require("./ZoomPlusOutlined"));
|
|
|
2428
2433
|
DigitalMediaFilled,
|
|
2429
2434
|
DigitalMediaOutlined,
|
|
2430
2435
|
DirectedFlightOutlined,
|
|
2436
|
+
DislikeOutlined,
|
|
2431
2437
|
DistanceOutlined,
|
|
2432
2438
|
DockFilled,
|
|
2433
2439
|
DockOutlined,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sensoro-design/icons",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.96.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.96.0"
|
|
31
31
|
},
|
|
32
32
|
"publishConfig": {
|
|
33
33
|
"access": "public"
|