@sensoro-design/icons 2.87.0 → 2.89.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.
@@ -0,0 +1,2 @@
1
+ // This index.ts file is generated automatically.
2
+ export { default } from './lib/icons/AiOutlined';
package/AiOutlined.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 _AiOutlined = _interopRequireDefault(require('./es/icons/AiOutlined'));
11
+
12
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
13
+
14
+ var _default = _AiOutlined;
15
+ exports.default = _default;
16
+ module.exports = _default;
package/CHANGELOG.md CHANGED
@@ -3,6 +3,25 @@
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.89.0](https://github.com/sensoro-design/sensoro-design-icons/compare/v2.88.0...v2.89.0) (2025-05-21)
7
+
8
+
9
+ ### Features
10
+
11
+ * add AiOutlined ([0c53329](https://github.com/sensoro-design/sensoro-design-icons/commit/0c5332964bfd3b3eddd116f21fb585455a3b4b9d))
12
+
13
+
14
+
15
+
16
+
17
+ # [2.88.0](https://github.com/sensoro-design/sensoro-design-icons/compare/v2.87.0...v2.88.0) (2025-05-15)
18
+
19
+ **Note:** Version bump only for package @sensoro-design/icons
20
+
21
+
22
+
23
+
24
+
6
25
  # [2.87.0](https://github.com/sensoro-design/sensoro-design-icons/compare/v2.86.0...v2.87.0) (2025-04-30)
7
26
 
8
27
 
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ import { SensoroIconProps } from '../components/SensoroIcon';
3
+ declare const RefIcon: React.ForwardRefExoticComponent<Omit<SensoroIconProps, 'ref'> & React.RefAttributes<HTMLSpanElement>>;
4
+ 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 AiOutlinedSvg from '@sensoro-design/icons-svg/es/asn/AiOutlined';
5
+ import SensoroIcon from "../components/SensoroIcon";
6
+ var AiOutlined = function AiOutlined(props, ref) {
7
+ return /*#__PURE__*/React.createElement(SensoroIcon, _extends({}, props, {
8
+ ref: ref,
9
+ icon: AiOutlinedSvg
10
+ }));
11
+ };
12
+ var RefIcon = /*#__PURE__*/React.forwardRef(AiOutlined);
13
+ RefIcon.displayName = 'AiOutlined';
14
+ export default RefIcon;
@@ -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 AiOutlined } from './AiOutlined';
10
11
  export { default as AimFilled } from './AimFilled';
11
12
  export { default as AimOutlined } from './AimOutlined';
12
13
  export { default as AirPressureOutlined } from './AirPressureOutlined';
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 AiOutlined } from "./AiOutlined";
11
12
  export { default as AimFilled } from "./AimFilled";
12
13
  export { default as AimOutlined } from "./AimOutlined";
13
14
  export { default as AirPressureOutlined } from "./AirPressureOutlined";
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ import { SensoroIconProps } from '../components/SensoroIcon';
3
+ declare const RefIcon: React.ForwardRefExoticComponent<Omit<SensoroIconProps, 'ref'> & React.RefAttributes<HTMLSpanElement>>;
4
+ export 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/AiOutlined.tsx
30
+ var AiOutlined_exports = {};
31
+ __export(AiOutlined_exports, {
32
+ default: () => AiOutlined_default
33
+ });
34
+ module.exports = __toCommonJS(AiOutlined_exports);
35
+ var React = __toESM(require("react"));
36
+ var import_AiOutlined = __toESM(require("@sensoro-design/icons-svg/es/asn/AiOutlined"));
37
+ var import_SensoroIcon = __toESM(require("../components/SensoroIcon"));
38
+ var AiOutlined = (props, ref) => /* @__PURE__ */ React.createElement(import_SensoroIcon.default, { ...props, ref, icon: import_AiOutlined.default });
39
+ var RefIcon = React.forwardRef(AiOutlined);
40
+ RefIcon.displayName = "AiOutlined";
41
+ var AiOutlined_default = RefIcon;
@@ -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 AiOutlined } from './AiOutlined';
10
11
  export { default as AimFilled } from './AimFilled';
11
12
  export { default as AimOutlined } from './AimOutlined';
12
13
  export { default as AirPressureOutlined } from './AirPressureOutlined';
@@ -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
+ AiOutlined: () => import_AiOutlined.default,
41
42
  AimFilled: () => import_AimFilled.default,
42
43
  AimOutlined: () => import_AimOutlined.default,
43
44
  AirPressureOutlined: () => import_AirPressureOutlined.default,
@@ -1108,6 +1109,7 @@ var import_AccountBookOutlined = __toESM(require("./AccountBookOutlined"));
1108
1109
  var import_AccountBookTwoTone = __toESM(require("./AccountBookTwoTone"));
1109
1110
  var import_AccountOutlined = __toESM(require("./AccountOutlined"));
1110
1111
  var import_AddressOutlined = __toESM(require("./AddressOutlined"));
1112
+ var import_AiOutlined = __toESM(require("./AiOutlined"));
1111
1113
  var import_AimFilled = __toESM(require("./AimFilled"));
1112
1114
  var import_AimOutlined = __toESM(require("./AimOutlined"));
1113
1115
  var import_AirPressureOutlined = __toESM(require("./AirPressureOutlined"));
@@ -2178,6 +2180,7 @@ var import_ZoomPlusOutlined = __toESM(require("./ZoomPlusOutlined"));
2178
2180
  AccountBookTwoTone,
2179
2181
  AccountOutlined,
2180
2182
  AddressOutlined,
2183
+ AiOutlined,
2181
2184
  AimFilled,
2182
2185
  AimOutlined,
2183
2186
  AirPressureOutlined,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sensoro-design/icons",
3
- "version": "2.87.0",
3
+ "version": "2.89.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.87.0"
30
+ "@sensoro-design/icons-svg": "2.89.0"
31
31
  },
32
32
  "publishConfig": {
33
33
  "access": "public"