@sensoro-design/icons 2.69.0 → 2.69.1

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 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.69.1](https://github.com/sensoro-design/sensoro-design-icons/compare/v2.69.0...v2.69.1) (2024-09-05)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * icon FineTuningOutlined rename to FineTuneFilled ([ec968a2](https://github.com/sensoro-design/sensoro-design-icons/commit/ec968a298a3f568c80e03de3229197733d10879a))
12
+
13
+
14
+
15
+
16
+
6
17
  # [2.69.0](https://github.com/sensoro-design/sensoro-design-icons/compare/v2.68.0...v2.69.0) (2024-09-05)
7
18
 
8
19
 
@@ -0,0 +1,2 @@
1
+ // This index.ts file is generated automatically.
2
+ export { default } from './lib/icons/FineTuneFilled';
@@ -7,10 +7,10 @@ Object.defineProperty(exports, "__esModule", {
7
7
 
8
8
  exports.default = void 0;
9
9
 
10
- var _FineTuningOutlined = _interopRequireDefault(require('./es/icons/FineTuningOutlined'));
10
+ var _FineTuneFilled = _interopRequireDefault(require('./es/icons/FineTuneFilled'));
11
11
 
12
12
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
13
13
 
14
- var _default = _FineTuningOutlined;
14
+ var _default = _FineTuneFilled;
15
15
  exports.default = _default;
16
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 FineTuneFilledSvg from '@sensoro-design/icons-svg/es/asn/FineTuneFilled';
5
+ import SensoroIcon from "../components/SensoroIcon";
6
+ var FineTuneFilled = function FineTuneFilled(props, ref) {
7
+ return /*#__PURE__*/React.createElement(SensoroIcon, _extends({}, props, {
8
+ ref: ref,
9
+ icon: FineTuneFilledSvg
10
+ }));
11
+ };
12
+ var RefIcon = /*#__PURE__*/React.forwardRef(FineTuneFilled);
13
+ RefIcon.displayName = 'FineTuneFilled';
14
+ export default RefIcon;
@@ -325,8 +325,8 @@ export { default as FileWordOutlined } from './FileWordOutlined';
325
325
  export { default as FileZipOutlined } from './FileZipOutlined';
326
326
  export { default as FilterFilled } from './FilterFilled';
327
327
  export { default as FilterOutlined } from './FilterOutlined';
328
+ export { default as FineTuneFilled } from './FineTuneFilled';
328
329
  export { default as FineTuneOutlined } from './FineTuneOutlined';
329
- export { default as FineTuningOutlined } from './FineTuningOutlined';
330
330
  export { default as FireBreakerFilled } from './FireBreakerFilled';
331
331
  export { default as FireBrigadeFilled } from './FireBrigadeFilled';
332
332
  export { default as FireBrigadeOutlined } from './FireBrigadeOutlined';
package/es/icons/index.js CHANGED
@@ -326,8 +326,8 @@ export { default as FileWordOutlined } from "./FileWordOutlined";
326
326
  export { default as FileZipOutlined } from "./FileZipOutlined";
327
327
  export { default as FilterFilled } from "./FilterFilled";
328
328
  export { default as FilterOutlined } from "./FilterOutlined";
329
+ export { default as FineTuneFilled } from "./FineTuneFilled";
329
330
  export { default as FineTuneOutlined } from "./FineTuneOutlined";
330
- export { default as FineTuningOutlined } from "./FineTuningOutlined";
331
331
  export { default as FireBreakerFilled } from "./FireBreakerFilled";
332
332
  export { default as FireBrigadeFilled } from "./FireBrigadeFilled";
333
333
  export { default as FireBrigadeOutlined } from "./FireBrigadeOutlined";
@@ -26,16 +26,16 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
26
26
  ));
27
27
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
28
28
 
29
- // src/icons/FineTuningOutlined.tsx
30
- var FineTuningOutlined_exports = {};
31
- __export(FineTuningOutlined_exports, {
32
- default: () => FineTuningOutlined_default
29
+ // src/icons/FineTuneFilled.tsx
30
+ var FineTuneFilled_exports = {};
31
+ __export(FineTuneFilled_exports, {
32
+ default: () => FineTuneFilled_default
33
33
  });
34
- module.exports = __toCommonJS(FineTuningOutlined_exports);
34
+ module.exports = __toCommonJS(FineTuneFilled_exports);
35
35
  var React = __toESM(require("react"));
36
- var import_FineTuningOutlined = __toESM(require("@sensoro-design/icons-svg/es/asn/FineTuningOutlined"));
36
+ var import_FineTuneFilled = __toESM(require("@sensoro-design/icons-svg/es/asn/FineTuneFilled"));
37
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;
38
+ var FineTuneFilled = (props, ref) => /* @__PURE__ */ React.createElement(import_SensoroIcon.default, { ...props, ref, icon: import_FineTuneFilled.default });
39
+ var RefIcon = React.forwardRef(FineTuneFilled);
40
+ RefIcon.displayName = "FineTuneFilled";
41
+ var FineTuneFilled_default = RefIcon;
@@ -325,8 +325,8 @@ export { default as FileWordOutlined } from './FileWordOutlined';
325
325
  export { default as FileZipOutlined } from './FileZipOutlined';
326
326
  export { default as FilterFilled } from './FilterFilled';
327
327
  export { default as FilterOutlined } from './FilterOutlined';
328
+ export { default as FineTuneFilled } from './FineTuneFilled';
328
329
  export { default as FineTuneOutlined } from './FineTuneOutlined';
329
- export { default as FineTuningOutlined } from './FineTuningOutlined';
330
330
  export { default as FireBreakerFilled } from './FireBreakerFilled';
331
331
  export { default as FireBrigadeFilled } from './FireBrigadeFilled';
332
332
  export { default as FireBrigadeOutlined } from './FireBrigadeOutlined';
@@ -356,8 +356,8 @@ __export(icons_exports, {
356
356
  FileZipOutlined: () => import_FileZipOutlined.default,
357
357
  FilterFilled: () => import_FilterFilled.default,
358
358
  FilterOutlined: () => import_FilterOutlined.default,
359
+ FineTuneFilled: () => import_FineTuneFilled.default,
359
360
  FineTuneOutlined: () => import_FineTuneOutlined.default,
360
- FineTuningOutlined: () => import_FineTuningOutlined.default,
361
361
  FireBreakerFilled: () => import_FireBreakerFilled.default,
362
362
  FireBrigadeFilled: () => import_FireBrigadeFilled.default,
363
363
  FireBrigadeOutlined: () => import_FireBrigadeOutlined.default,
@@ -1379,8 +1379,8 @@ var import_FileWordOutlined = __toESM(require("./FileWordOutlined"));
1379
1379
  var import_FileZipOutlined = __toESM(require("./FileZipOutlined"));
1380
1380
  var import_FilterFilled = __toESM(require("./FilterFilled"));
1381
1381
  var import_FilterOutlined = __toESM(require("./FilterOutlined"));
1382
+ var import_FineTuneFilled = __toESM(require("./FineTuneFilled"));
1382
1383
  var import_FineTuneOutlined = __toESM(require("./FineTuneOutlined"));
1383
- var import_FineTuningOutlined = __toESM(require("./FineTuningOutlined"));
1384
1384
  var import_FireBreakerFilled = __toESM(require("./FireBreakerFilled"));
1385
1385
  var import_FireBrigadeFilled = __toESM(require("./FireBrigadeFilled"));
1386
1386
  var import_FireBrigadeOutlined = __toESM(require("./FireBrigadeOutlined"));
@@ -2402,8 +2402,8 @@ var import_ZoomPlusOutlined = __toESM(require("./ZoomPlusOutlined"));
2402
2402
  FileZipOutlined,
2403
2403
  FilterFilled,
2404
2404
  FilterOutlined,
2405
+ FineTuneFilled,
2405
2406
  FineTuneOutlined,
2406
- FineTuningOutlined,
2407
2407
  FireBreakerFilled,
2408
2408
  FireBrigadeFilled,
2409
2409
  FireBrigadeOutlined,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sensoro-design/icons",
3
- "version": "2.69.0",
3
+ "version": "2.69.1",
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.69.0"
30
+ "@sensoro-design/icons-svg": "2.69.1"
31
31
  },
32
32
  "publishConfig": {
33
33
  "access": "public"
@@ -1,2 +0,0 @@
1
- // This index.ts file is generated automatically.
2
- export { default } from './lib/icons/FineTuningOutlined';
@@ -1,14 +0,0 @@
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;