@sensoro-design/icons 2.53.0 → 2.54.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 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.54.0](https://github.com/sensoro-design/sensoro-design-icons/compare/@sensoro-design/icons@2.53.0...@sensoro-design/icons@2.54.0) (2024-08-30)
7
+
8
+
9
+ ### Features
10
+
11
+ * add MediaLibraryOutlined ([16fddc3](https://github.com/sensoro-design/sensoro-design-icons/commit/16fddc3e934460153a10d46f21aa025539afc112))
12
+
13
+
14
+
15
+
16
+
6
17
  # [2.53.0](https://github.com/sensoro-design/sensoro-design-icons/compare/@sensoro-design/icons@2.52.0...@sensoro-design/icons@2.53.0) (2024-08-30)
7
18
 
8
19
 
@@ -0,0 +1,2 @@
1
+ // This index.ts file is generated automatically.
2
+ export { default } from './lib/icons/MediaLibraryOutlined';
@@ -0,0 +1,15 @@
1
+ // This index.ts file is generated automatically.
2
+ 'use strict';
3
+
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ exports.default = void 0;
8
+
9
+ var _MediaLibraryOutlined = _interopRequireDefault(require('./es/icons/MediaLibraryOutlined'));
10
+
11
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
12
+
13
+ var _default = _MediaLibraryOutlined;
14
+ exports.default = _default;
15
+ module.exports = _default;
@@ -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 MediaLibraryOutlinedSvg from '@sensoro-design/icons-svg/es/asn/MediaLibraryOutlined';
5
+ import SensoroIcon from "../components/SensoroIcon";
6
+ var MediaLibraryOutlined = function MediaLibraryOutlined(props, ref) {
7
+ return /*#__PURE__*/React.createElement(SensoroIcon, _extends({}, props, {
8
+ ref: ref,
9
+ icon: MediaLibraryOutlinedSvg
10
+ }));
11
+ };
12
+ var RefIcon = /*#__PURE__*/React.forwardRef(MediaLibraryOutlined);
13
+ RefIcon.displayName = 'MediaLibraryOutlined';
14
+ export default RefIcon;
@@ -554,6 +554,7 @@ export { default as ManualOutlined } from './ManualOutlined';
554
554
  export { default as Map2DOutlined } from './Map2DOutlined';
555
555
  export { default as Map3DOutlined } from './Map3DOutlined';
556
556
  export { default as MeansAccessOutlined } from './MeansAccessOutlined';
557
+ export { default as MediaLibraryOutlined } from './MediaLibraryOutlined';
557
558
  export { default as MedicalFilled } from './MedicalFilled';
558
559
  export { default as MedicalKitOutlined } from './MedicalKitOutlined';
559
560
  export { default as MedicalOutlined } from './MedicalOutlined';
package/es/icons/index.js CHANGED
@@ -555,6 +555,7 @@ export { default as ManualOutlined } from "./ManualOutlined";
555
555
  export { default as Map2DOutlined } from "./Map2DOutlined";
556
556
  export { default as Map3DOutlined } from "./Map3DOutlined";
557
557
  export { default as MeansAccessOutlined } from "./MeansAccessOutlined";
558
+ export { default as MediaLibraryOutlined } from "./MediaLibraryOutlined";
558
559
  export { default as MedicalFilled } from "./MedicalFilled";
559
560
  export { default as MedicalKitOutlined } from "./MedicalKitOutlined";
560
561
  export { default as MedicalOutlined } from "./MedicalOutlined";
@@ -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/MediaLibraryOutlined.tsx
30
+ var MediaLibraryOutlined_exports = {};
31
+ __export(MediaLibraryOutlined_exports, {
32
+ default: () => MediaLibraryOutlined_default
33
+ });
34
+ module.exports = __toCommonJS(MediaLibraryOutlined_exports);
35
+ var React = __toESM(require("react"));
36
+ var import_MediaLibraryOutlined = __toESM(require("@sensoro-design/icons-svg/es/asn/MediaLibraryOutlined"));
37
+ var import_SensoroIcon = __toESM(require("../components/SensoroIcon"));
38
+ var MediaLibraryOutlined = (props, ref) => /* @__PURE__ */ React.createElement(import_SensoroIcon.default, { ...props, ref, icon: import_MediaLibraryOutlined.default });
39
+ var RefIcon = React.forwardRef(MediaLibraryOutlined);
40
+ RefIcon.displayName = "MediaLibraryOutlined";
41
+ var MediaLibraryOutlined_default = RefIcon;
@@ -554,6 +554,7 @@ export { default as ManualOutlined } from './ManualOutlined';
554
554
  export { default as Map2DOutlined } from './Map2DOutlined';
555
555
  export { default as Map3DOutlined } from './Map3DOutlined';
556
556
  export { default as MeansAccessOutlined } from './MeansAccessOutlined';
557
+ export { default as MediaLibraryOutlined } from './MediaLibraryOutlined';
557
558
  export { default as MedicalFilled } from './MedicalFilled';
558
559
  export { default as MedicalKitOutlined } from './MedicalKitOutlined';
559
560
  export { default as MedicalOutlined } from './MedicalOutlined';
@@ -585,6 +585,7 @@ __export(icons_exports, {
585
585
  Map2DOutlined: () => import_Map2DOutlined.default,
586
586
  Map3DOutlined: () => import_Map3DOutlined.default,
587
587
  MeansAccessOutlined: () => import_MeansAccessOutlined.default,
588
+ MediaLibraryOutlined: () => import_MediaLibraryOutlined.default,
588
589
  MedicalFilled: () => import_MedicalFilled.default,
589
590
  MedicalKitOutlined: () => import_MedicalKitOutlined.default,
590
591
  MedicalOutlined: () => import_MedicalOutlined.default,
@@ -1594,6 +1595,7 @@ var import_ManualOutlined = __toESM(require("./ManualOutlined"));
1594
1595
  var import_Map2DOutlined = __toESM(require("./Map2DOutlined"));
1595
1596
  var import_Map3DOutlined = __toESM(require("./Map3DOutlined"));
1596
1597
  var import_MeansAccessOutlined = __toESM(require("./MeansAccessOutlined"));
1598
+ var import_MediaLibraryOutlined = __toESM(require("./MediaLibraryOutlined"));
1597
1599
  var import_MedicalFilled = __toESM(require("./MedicalFilled"));
1598
1600
  var import_MedicalKitOutlined = __toESM(require("./MedicalKitOutlined"));
1599
1601
  var import_MedicalOutlined = __toESM(require("./MedicalOutlined"));
@@ -2603,6 +2605,7 @@ var import_ZoomPlusOutlined = __toESM(require("./ZoomPlusOutlined"));
2603
2605
  Map2DOutlined,
2604
2606
  Map3DOutlined,
2605
2607
  MeansAccessOutlined,
2608
+ MediaLibraryOutlined,
2606
2609
  MedicalFilled,
2607
2610
  MedicalKitOutlined,
2608
2611
  MedicalOutlined,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sensoro-design/icons",
3
- "version": "2.53.0",
3
+ "version": "2.54.0",
4
4
  "description": "Abstract nodes for sensoro design icons.",
5
5
  "main": "lib/index.js",
6
6
  "module": "es/index.js",
@@ -31,7 +31,7 @@
31
31
  "@ant-design/colors": "^6.0.0",
32
32
  "@babel/runtime": "^7.11.2",
33
33
  "@pansy/classnames": "^1.0.1",
34
- "@sensoro-design/icons-svg": "2.62.0",
34
+ "@sensoro-design/icons-svg": "2.63.0",
35
35
  "rc-util": "^5.19.3"
36
36
  },
37
37
  "publishConfig": {