@sensoro-design/icons 2.92.0 → 2.94.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/CallBackOutlined.d.ts +2 -0
- package/CallBackOutlined.js +16 -0
- package/HangUpFilled.d.ts +2 -0
- package/HangUpFilled.js +16 -0
- package/HangUpOutlined.d.ts +2 -0
- package/HangUpOutlined.js +16 -0
- package/MaximizeOutlined.d.ts +2 -0
- package/MaximizeOutlined.js +16 -0
- package/MinimizeOutlined.d.ts +2 -0
- package/MinimizeOutlined.js +16 -0
- package/es/icons/CallBackOutlined.d.ts +4 -0
- package/es/icons/CallBackOutlined.js +14 -0
- package/es/icons/HangUpFilled.d.ts +4 -0
- package/es/icons/HangUpFilled.js +14 -0
- package/es/icons/HangUpOutlined.d.ts +4 -0
- package/es/icons/HangUpOutlined.js +14 -0
- package/es/icons/MaximizeOutlined.d.ts +4 -0
- package/es/icons/MaximizeOutlined.js +14 -0
- package/es/icons/MinimizeOutlined.d.ts +4 -0
- package/es/icons/MinimizeOutlined.js +14 -0
- package/es/icons/index.d.ts +5 -0
- package/es/icons/index.js +5 -0
- package/lib/icons/CallBackOutlined.d.ts +4 -0
- package/lib/icons/CallBackOutlined.js +41 -0
- package/lib/icons/HangUpFilled.d.ts +4 -0
- package/lib/icons/HangUpFilled.js +41 -0
- package/lib/icons/HangUpOutlined.d.ts +4 -0
- package/lib/icons/HangUpOutlined.js +41 -0
- package/lib/icons/MaximizeOutlined.d.ts +4 -0
- package/lib/icons/MaximizeOutlined.js +41 -0
- package/lib/icons/MinimizeOutlined.d.ts +4 -0
- package/lib/icons/MinimizeOutlined.js +41 -0
- package/lib/icons/index.d.ts +5 -0
- package/lib/icons/index.js +15 -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.94.0](https://github.com/sensoro-design/sensoro-design-icons/compare/v2.93.0...v2.94.0) (2025-07-16)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* add CallBackOutlined ([f95ebff](https://github.com/sensoro-design/sensoro-design-icons/commit/f95ebff978f28e9bf2a2c91712d83518d4464cd8))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [2.93.0](https://github.com/sensoro-design/sensoro-design-icons/compare/v2.92.0...v2.93.0) (2025-06-28)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* add HangUpFilled、HangUpOutlined、MaximizeOutlined、MinimizeOutlined ([028ad6e](https://github.com/sensoro-design/sensoro-design-icons/commit/028ad6e6cf735ddb293660895d8c7de880c73564))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
6
28
|
# [2.92.0](https://github.com/sensoro-design/sensoro-design-icons/compare/v2.91.0...v2.92.0) (2025-06-26)
|
|
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 _CallBackOutlined = _interopRequireDefault(require('./es/icons/CallBackOutlined'));
|
|
11
|
+
|
|
12
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
|
|
13
|
+
|
|
14
|
+
var _default = _CallBackOutlined;
|
|
15
|
+
exports.default = _default;
|
|
16
|
+
module.exports = _default;
|
package/HangUpFilled.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 _HangUpFilled = _interopRequireDefault(require('./es/icons/HangUpFilled'));
|
|
11
|
+
|
|
12
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
|
|
13
|
+
|
|
14
|
+
var _default = _HangUpFilled;
|
|
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 _HangUpOutlined = _interopRequireDefault(require('./es/icons/HangUpOutlined'));
|
|
11
|
+
|
|
12
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
|
|
13
|
+
|
|
14
|
+
var _default = _HangUpOutlined;
|
|
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 _MaximizeOutlined = _interopRequireDefault(require('./es/icons/MaximizeOutlined'));
|
|
11
|
+
|
|
12
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
|
|
13
|
+
|
|
14
|
+
var _default = _MaximizeOutlined;
|
|
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 _MinimizeOutlined = _interopRequireDefault(require('./es/icons/MinimizeOutlined'));
|
|
11
|
+
|
|
12
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
|
|
13
|
+
|
|
14
|
+
var _default = _MinimizeOutlined;
|
|
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 CallBackOutlinedSvg from '@sensoro-design/icons-svg/es/asn/CallBackOutlined';
|
|
5
|
+
import SensoroIcon from "../components/SensoroIcon";
|
|
6
|
+
var CallBackOutlined = function CallBackOutlined(props, ref) {
|
|
7
|
+
return /*#__PURE__*/React.createElement(SensoroIcon, _extends({}, props, {
|
|
8
|
+
ref: ref,
|
|
9
|
+
icon: CallBackOutlinedSvg
|
|
10
|
+
}));
|
|
11
|
+
};
|
|
12
|
+
var RefIcon = /*#__PURE__*/React.forwardRef(CallBackOutlined);
|
|
13
|
+
RefIcon.displayName = 'CallBackOutlined';
|
|
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 HangUpFilledSvg from '@sensoro-design/icons-svg/es/asn/HangUpFilled';
|
|
5
|
+
import SensoroIcon from "../components/SensoroIcon";
|
|
6
|
+
var HangUpFilled = function HangUpFilled(props, ref) {
|
|
7
|
+
return /*#__PURE__*/React.createElement(SensoroIcon, _extends({}, props, {
|
|
8
|
+
ref: ref,
|
|
9
|
+
icon: HangUpFilledSvg
|
|
10
|
+
}));
|
|
11
|
+
};
|
|
12
|
+
var RefIcon = /*#__PURE__*/React.forwardRef(HangUpFilled);
|
|
13
|
+
RefIcon.displayName = 'HangUpFilled';
|
|
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 HangUpOutlinedSvg from '@sensoro-design/icons-svg/es/asn/HangUpOutlined';
|
|
5
|
+
import SensoroIcon from "../components/SensoroIcon";
|
|
6
|
+
var HangUpOutlined = function HangUpOutlined(props, ref) {
|
|
7
|
+
return /*#__PURE__*/React.createElement(SensoroIcon, _extends({}, props, {
|
|
8
|
+
ref: ref,
|
|
9
|
+
icon: HangUpOutlinedSvg
|
|
10
|
+
}));
|
|
11
|
+
};
|
|
12
|
+
var RefIcon = /*#__PURE__*/React.forwardRef(HangUpOutlined);
|
|
13
|
+
RefIcon.displayName = 'HangUpOutlined';
|
|
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 MaximizeOutlinedSvg from '@sensoro-design/icons-svg/es/asn/MaximizeOutlined';
|
|
5
|
+
import SensoroIcon from "../components/SensoroIcon";
|
|
6
|
+
var MaximizeOutlined = function MaximizeOutlined(props, ref) {
|
|
7
|
+
return /*#__PURE__*/React.createElement(SensoroIcon, _extends({}, props, {
|
|
8
|
+
ref: ref,
|
|
9
|
+
icon: MaximizeOutlinedSvg
|
|
10
|
+
}));
|
|
11
|
+
};
|
|
12
|
+
var RefIcon = /*#__PURE__*/React.forwardRef(MaximizeOutlined);
|
|
13
|
+
RefIcon.displayName = 'MaximizeOutlined';
|
|
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 MinimizeOutlinedSvg from '@sensoro-design/icons-svg/es/asn/MinimizeOutlined';
|
|
5
|
+
import SensoroIcon from "../components/SensoroIcon";
|
|
6
|
+
var MinimizeOutlined = function MinimizeOutlined(props, ref) {
|
|
7
|
+
return /*#__PURE__*/React.createElement(SensoroIcon, _extends({}, props, {
|
|
8
|
+
ref: ref,
|
|
9
|
+
icon: MinimizeOutlinedSvg
|
|
10
|
+
}));
|
|
11
|
+
};
|
|
12
|
+
var RefIcon = /*#__PURE__*/React.forwardRef(MinimizeOutlined);
|
|
13
|
+
RefIcon.displayName = 'MinimizeOutlined';
|
|
14
|
+
export default RefIcon;
|
package/es/icons/index.d.ts
CHANGED
|
@@ -122,6 +122,7 @@ export { default as CalendarCheckFilled } from './CalendarCheckFilled';
|
|
|
122
122
|
export { default as CalendarCheckOutlined } from './CalendarCheckOutlined';
|
|
123
123
|
export { default as CalendarClockOutlined } from './CalendarClockOutlined';
|
|
124
124
|
export { default as CalendarOutlined } from './CalendarOutlined';
|
|
125
|
+
export { default as CallBackOutlined } from './CallBackOutlined';
|
|
125
126
|
export { default as CallVideoFilled } from './CallVideoFilled';
|
|
126
127
|
export { default as CallVideoOutlined } from './CallVideoOutlined';
|
|
127
128
|
export { default as CameraFilled } from './CameraFilled';
|
|
@@ -438,6 +439,8 @@ export { default as GroupRuleFilled } from './GroupRuleFilled';
|
|
|
438
439
|
export { default as GroupRuleOutlined } from './GroupRuleOutlined';
|
|
439
440
|
export { default as HailOutlined } from './HailOutlined';
|
|
440
441
|
export { default as HandcuffsOutlined } from './HandcuffsOutlined';
|
|
442
|
+
export { default as HangUpFilled } from './HangUpFilled';
|
|
443
|
+
export { default as HangUpOutlined } from './HangUpOutlined';
|
|
441
444
|
export { default as HashrateCenterFilled } from './HashrateCenterFilled';
|
|
442
445
|
export { default as HashrateCenterOutlined } from './HashrateCenterOutlined';
|
|
443
446
|
export { default as HashrateFilled } from './HashrateFilled';
|
|
@@ -583,6 +586,7 @@ export { default as ManualAlarmCircleOutlined } from './ManualAlarmCircleOutline
|
|
|
583
586
|
export { default as ManualOutlined } from './ManualOutlined';
|
|
584
587
|
export { default as Map2DOutlined } from './Map2DOutlined';
|
|
585
588
|
export { default as Map3DOutlined } from './Map3DOutlined';
|
|
589
|
+
export { default as MaximizeOutlined } from './MaximizeOutlined';
|
|
586
590
|
export { default as MeansAccessOutlined } from './MeansAccessOutlined';
|
|
587
591
|
export { default as MedalsFilled } from './MedalsFilled';
|
|
588
592
|
export { default as MedalsOutlined } from './MedalsOutlined';
|
|
@@ -604,6 +608,7 @@ export { default as MigrateOutlined } from './MigrateOutlined';
|
|
|
604
608
|
export { default as MiniatureFireStationAddOutlined } from './MiniatureFireStationAddOutlined';
|
|
605
609
|
export { default as MiniatureFireStationFilled } from './MiniatureFireStationFilled';
|
|
606
610
|
export { default as MiniatureFireStationOutlined } from './MiniatureFireStationOutlined';
|
|
611
|
+
export { default as MinimizeOutlined } from './MinimizeOutlined';
|
|
607
612
|
export { default as MinusCircleFilled } from './MinusCircleFilled';
|
|
608
613
|
export { default as MinusCircleOutlined } from './MinusCircleOutlined';
|
|
609
614
|
export { default as MinusOutlined } from './MinusOutlined';
|
package/es/icons/index.js
CHANGED
|
@@ -123,6 +123,7 @@ export { default as CalendarCheckFilled } from "./CalendarCheckFilled";
|
|
|
123
123
|
export { default as CalendarCheckOutlined } from "./CalendarCheckOutlined";
|
|
124
124
|
export { default as CalendarClockOutlined } from "./CalendarClockOutlined";
|
|
125
125
|
export { default as CalendarOutlined } from "./CalendarOutlined";
|
|
126
|
+
export { default as CallBackOutlined } from "./CallBackOutlined";
|
|
126
127
|
export { default as CallVideoFilled } from "./CallVideoFilled";
|
|
127
128
|
export { default as CallVideoOutlined } from "./CallVideoOutlined";
|
|
128
129
|
export { default as CameraFilled } from "./CameraFilled";
|
|
@@ -439,6 +440,8 @@ export { default as GroupRuleFilled } from "./GroupRuleFilled";
|
|
|
439
440
|
export { default as GroupRuleOutlined } from "./GroupRuleOutlined";
|
|
440
441
|
export { default as HailOutlined } from "./HailOutlined";
|
|
441
442
|
export { default as HandcuffsOutlined } from "./HandcuffsOutlined";
|
|
443
|
+
export { default as HangUpFilled } from "./HangUpFilled";
|
|
444
|
+
export { default as HangUpOutlined } from "./HangUpOutlined";
|
|
442
445
|
export { default as HashrateCenterFilled } from "./HashrateCenterFilled";
|
|
443
446
|
export { default as HashrateCenterOutlined } from "./HashrateCenterOutlined";
|
|
444
447
|
export { default as HashrateFilled } from "./HashrateFilled";
|
|
@@ -584,6 +587,7 @@ export { default as ManualAlarmCircleOutlined } from "./ManualAlarmCircleOutline
|
|
|
584
587
|
export { default as ManualOutlined } from "./ManualOutlined";
|
|
585
588
|
export { default as Map2DOutlined } from "./Map2DOutlined";
|
|
586
589
|
export { default as Map3DOutlined } from "./Map3DOutlined";
|
|
590
|
+
export { default as MaximizeOutlined } from "./MaximizeOutlined";
|
|
587
591
|
export { default as MeansAccessOutlined } from "./MeansAccessOutlined";
|
|
588
592
|
export { default as MedalsFilled } from "./MedalsFilled";
|
|
589
593
|
export { default as MedalsOutlined } from "./MedalsOutlined";
|
|
@@ -605,6 +609,7 @@ export { default as MigrateOutlined } from "./MigrateOutlined";
|
|
|
605
609
|
export { default as MiniatureFireStationAddOutlined } from "./MiniatureFireStationAddOutlined";
|
|
606
610
|
export { default as MiniatureFireStationFilled } from "./MiniatureFireStationFilled";
|
|
607
611
|
export { default as MiniatureFireStationOutlined } from "./MiniatureFireStationOutlined";
|
|
612
|
+
export { default as MinimizeOutlined } from "./MinimizeOutlined";
|
|
608
613
|
export { default as MinusCircleFilled } from "./MinusCircleFilled";
|
|
609
614
|
export { default as MinusCircleOutlined } from "./MinusCircleOutlined";
|
|
610
615
|
export { default as MinusOutlined } from "./MinusOutlined";
|
|
@@ -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/CallBackOutlined.tsx
|
|
30
|
+
var CallBackOutlined_exports = {};
|
|
31
|
+
__export(CallBackOutlined_exports, {
|
|
32
|
+
default: () => CallBackOutlined_default
|
|
33
|
+
});
|
|
34
|
+
module.exports = __toCommonJS(CallBackOutlined_exports);
|
|
35
|
+
var React = __toESM(require("react"));
|
|
36
|
+
var import_CallBackOutlined = __toESM(require("@sensoro-design/icons-svg/es/asn/CallBackOutlined"));
|
|
37
|
+
var import_SensoroIcon = __toESM(require("../components/SensoroIcon"));
|
|
38
|
+
var CallBackOutlined = (props, ref) => /* @__PURE__ */ React.createElement(import_SensoroIcon.default, { ...props, ref, icon: import_CallBackOutlined.default });
|
|
39
|
+
var RefIcon = React.forwardRef(CallBackOutlined);
|
|
40
|
+
RefIcon.displayName = "CallBackOutlined";
|
|
41
|
+
var CallBackOutlined_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/HangUpFilled.tsx
|
|
30
|
+
var HangUpFilled_exports = {};
|
|
31
|
+
__export(HangUpFilled_exports, {
|
|
32
|
+
default: () => HangUpFilled_default
|
|
33
|
+
});
|
|
34
|
+
module.exports = __toCommonJS(HangUpFilled_exports);
|
|
35
|
+
var React = __toESM(require("react"));
|
|
36
|
+
var import_HangUpFilled = __toESM(require("@sensoro-design/icons-svg/es/asn/HangUpFilled"));
|
|
37
|
+
var import_SensoroIcon = __toESM(require("../components/SensoroIcon"));
|
|
38
|
+
var HangUpFilled = (props, ref) => /* @__PURE__ */ React.createElement(import_SensoroIcon.default, { ...props, ref, icon: import_HangUpFilled.default });
|
|
39
|
+
var RefIcon = React.forwardRef(HangUpFilled);
|
|
40
|
+
RefIcon.displayName = "HangUpFilled";
|
|
41
|
+
var HangUpFilled_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/HangUpOutlined.tsx
|
|
30
|
+
var HangUpOutlined_exports = {};
|
|
31
|
+
__export(HangUpOutlined_exports, {
|
|
32
|
+
default: () => HangUpOutlined_default
|
|
33
|
+
});
|
|
34
|
+
module.exports = __toCommonJS(HangUpOutlined_exports);
|
|
35
|
+
var React = __toESM(require("react"));
|
|
36
|
+
var import_HangUpOutlined = __toESM(require("@sensoro-design/icons-svg/es/asn/HangUpOutlined"));
|
|
37
|
+
var import_SensoroIcon = __toESM(require("../components/SensoroIcon"));
|
|
38
|
+
var HangUpOutlined = (props, ref) => /* @__PURE__ */ React.createElement(import_SensoroIcon.default, { ...props, ref, icon: import_HangUpOutlined.default });
|
|
39
|
+
var RefIcon = React.forwardRef(HangUpOutlined);
|
|
40
|
+
RefIcon.displayName = "HangUpOutlined";
|
|
41
|
+
var HangUpOutlined_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/MaximizeOutlined.tsx
|
|
30
|
+
var MaximizeOutlined_exports = {};
|
|
31
|
+
__export(MaximizeOutlined_exports, {
|
|
32
|
+
default: () => MaximizeOutlined_default
|
|
33
|
+
});
|
|
34
|
+
module.exports = __toCommonJS(MaximizeOutlined_exports);
|
|
35
|
+
var React = __toESM(require("react"));
|
|
36
|
+
var import_MaximizeOutlined = __toESM(require("@sensoro-design/icons-svg/es/asn/MaximizeOutlined"));
|
|
37
|
+
var import_SensoroIcon = __toESM(require("../components/SensoroIcon"));
|
|
38
|
+
var MaximizeOutlined = (props, ref) => /* @__PURE__ */ React.createElement(import_SensoroIcon.default, { ...props, ref, icon: import_MaximizeOutlined.default });
|
|
39
|
+
var RefIcon = React.forwardRef(MaximizeOutlined);
|
|
40
|
+
RefIcon.displayName = "MaximizeOutlined";
|
|
41
|
+
var MaximizeOutlined_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/MinimizeOutlined.tsx
|
|
30
|
+
var MinimizeOutlined_exports = {};
|
|
31
|
+
__export(MinimizeOutlined_exports, {
|
|
32
|
+
default: () => MinimizeOutlined_default
|
|
33
|
+
});
|
|
34
|
+
module.exports = __toCommonJS(MinimizeOutlined_exports);
|
|
35
|
+
var React = __toESM(require("react"));
|
|
36
|
+
var import_MinimizeOutlined = __toESM(require("@sensoro-design/icons-svg/es/asn/MinimizeOutlined"));
|
|
37
|
+
var import_SensoroIcon = __toESM(require("../components/SensoroIcon"));
|
|
38
|
+
var MinimizeOutlined = (props, ref) => /* @__PURE__ */ React.createElement(import_SensoroIcon.default, { ...props, ref, icon: import_MinimizeOutlined.default });
|
|
39
|
+
var RefIcon = React.forwardRef(MinimizeOutlined);
|
|
40
|
+
RefIcon.displayName = "MinimizeOutlined";
|
|
41
|
+
var MinimizeOutlined_default = RefIcon;
|
package/lib/icons/index.d.ts
CHANGED
|
@@ -122,6 +122,7 @@ export { default as CalendarCheckFilled } from './CalendarCheckFilled';
|
|
|
122
122
|
export { default as CalendarCheckOutlined } from './CalendarCheckOutlined';
|
|
123
123
|
export { default as CalendarClockOutlined } from './CalendarClockOutlined';
|
|
124
124
|
export { default as CalendarOutlined } from './CalendarOutlined';
|
|
125
|
+
export { default as CallBackOutlined } from './CallBackOutlined';
|
|
125
126
|
export { default as CallVideoFilled } from './CallVideoFilled';
|
|
126
127
|
export { default as CallVideoOutlined } from './CallVideoOutlined';
|
|
127
128
|
export { default as CameraFilled } from './CameraFilled';
|
|
@@ -438,6 +439,8 @@ export { default as GroupRuleFilled } from './GroupRuleFilled';
|
|
|
438
439
|
export { default as GroupRuleOutlined } from './GroupRuleOutlined';
|
|
439
440
|
export { default as HailOutlined } from './HailOutlined';
|
|
440
441
|
export { default as HandcuffsOutlined } from './HandcuffsOutlined';
|
|
442
|
+
export { default as HangUpFilled } from './HangUpFilled';
|
|
443
|
+
export { default as HangUpOutlined } from './HangUpOutlined';
|
|
441
444
|
export { default as HashrateCenterFilled } from './HashrateCenterFilled';
|
|
442
445
|
export { default as HashrateCenterOutlined } from './HashrateCenterOutlined';
|
|
443
446
|
export { default as HashrateFilled } from './HashrateFilled';
|
|
@@ -583,6 +586,7 @@ export { default as ManualAlarmCircleOutlined } from './ManualAlarmCircleOutline
|
|
|
583
586
|
export { default as ManualOutlined } from './ManualOutlined';
|
|
584
587
|
export { default as Map2DOutlined } from './Map2DOutlined';
|
|
585
588
|
export { default as Map3DOutlined } from './Map3DOutlined';
|
|
589
|
+
export { default as MaximizeOutlined } from './MaximizeOutlined';
|
|
586
590
|
export { default as MeansAccessOutlined } from './MeansAccessOutlined';
|
|
587
591
|
export { default as MedalsFilled } from './MedalsFilled';
|
|
588
592
|
export { default as MedalsOutlined } from './MedalsOutlined';
|
|
@@ -604,6 +608,7 @@ export { default as MigrateOutlined } from './MigrateOutlined';
|
|
|
604
608
|
export { default as MiniatureFireStationAddOutlined } from './MiniatureFireStationAddOutlined';
|
|
605
609
|
export { default as MiniatureFireStationFilled } from './MiniatureFireStationFilled';
|
|
606
610
|
export { default as MiniatureFireStationOutlined } from './MiniatureFireStationOutlined';
|
|
611
|
+
export { default as MinimizeOutlined } from './MinimizeOutlined';
|
|
607
612
|
export { default as MinusCircleFilled } from './MinusCircleFilled';
|
|
608
613
|
export { default as MinusCircleOutlined } from './MinusCircleOutlined';
|
|
609
614
|
export { default as MinusOutlined } from './MinusOutlined';
|
package/lib/icons/index.js
CHANGED
|
@@ -153,6 +153,7 @@ __export(icons_exports, {
|
|
|
153
153
|
CalendarCheckOutlined: () => import_CalendarCheckOutlined.default,
|
|
154
154
|
CalendarClockOutlined: () => import_CalendarClockOutlined.default,
|
|
155
155
|
CalendarOutlined: () => import_CalendarOutlined.default,
|
|
156
|
+
CallBackOutlined: () => import_CallBackOutlined.default,
|
|
156
157
|
CallVideoFilled: () => import_CallVideoFilled.default,
|
|
157
158
|
CallVideoOutlined: () => import_CallVideoOutlined.default,
|
|
158
159
|
CameraFilled: () => import_CameraFilled.default,
|
|
@@ -469,6 +470,8 @@ __export(icons_exports, {
|
|
|
469
470
|
GroupRuleOutlined: () => import_GroupRuleOutlined.default,
|
|
470
471
|
HailOutlined: () => import_HailOutlined.default,
|
|
471
472
|
HandcuffsOutlined: () => import_HandcuffsOutlined.default,
|
|
473
|
+
HangUpFilled: () => import_HangUpFilled.default,
|
|
474
|
+
HangUpOutlined: () => import_HangUpOutlined.default,
|
|
472
475
|
HashrateCenterFilled: () => import_HashrateCenterFilled.default,
|
|
473
476
|
HashrateCenterOutlined: () => import_HashrateCenterOutlined.default,
|
|
474
477
|
HashrateFilled: () => import_HashrateFilled.default,
|
|
@@ -614,6 +617,7 @@ __export(icons_exports, {
|
|
|
614
617
|
ManualOutlined: () => import_ManualOutlined.default,
|
|
615
618
|
Map2DOutlined: () => import_Map2DOutlined.default,
|
|
616
619
|
Map3DOutlined: () => import_Map3DOutlined.default,
|
|
620
|
+
MaximizeOutlined: () => import_MaximizeOutlined.default,
|
|
617
621
|
MeansAccessOutlined: () => import_MeansAccessOutlined.default,
|
|
618
622
|
MedalsFilled: () => import_MedalsFilled.default,
|
|
619
623
|
MedalsOutlined: () => import_MedalsOutlined.default,
|
|
@@ -635,6 +639,7 @@ __export(icons_exports, {
|
|
|
635
639
|
MiniatureFireStationAddOutlined: () => import_MiniatureFireStationAddOutlined.default,
|
|
636
640
|
MiniatureFireStationFilled: () => import_MiniatureFireStationFilled.default,
|
|
637
641
|
MiniatureFireStationOutlined: () => import_MiniatureFireStationOutlined.default,
|
|
642
|
+
MinimizeOutlined: () => import_MinimizeOutlined.default,
|
|
638
643
|
MinusCircleFilled: () => import_MinusCircleFilled.default,
|
|
639
644
|
MinusCircleOutlined: () => import_MinusCircleOutlined.default,
|
|
640
645
|
MinusOutlined: () => import_MinusOutlined.default,
|
|
@@ -1233,6 +1238,7 @@ var import_CalendarCheckFilled = __toESM(require("./CalendarCheckFilled"));
|
|
|
1233
1238
|
var import_CalendarCheckOutlined = __toESM(require("./CalendarCheckOutlined"));
|
|
1234
1239
|
var import_CalendarClockOutlined = __toESM(require("./CalendarClockOutlined"));
|
|
1235
1240
|
var import_CalendarOutlined = __toESM(require("./CalendarOutlined"));
|
|
1241
|
+
var import_CallBackOutlined = __toESM(require("./CallBackOutlined"));
|
|
1236
1242
|
var import_CallVideoFilled = __toESM(require("./CallVideoFilled"));
|
|
1237
1243
|
var import_CallVideoOutlined = __toESM(require("./CallVideoOutlined"));
|
|
1238
1244
|
var import_CameraFilled = __toESM(require("./CameraFilled"));
|
|
@@ -1549,6 +1555,8 @@ var import_GroupRuleFilled = __toESM(require("./GroupRuleFilled"));
|
|
|
1549
1555
|
var import_GroupRuleOutlined = __toESM(require("./GroupRuleOutlined"));
|
|
1550
1556
|
var import_HailOutlined = __toESM(require("./HailOutlined"));
|
|
1551
1557
|
var import_HandcuffsOutlined = __toESM(require("./HandcuffsOutlined"));
|
|
1558
|
+
var import_HangUpFilled = __toESM(require("./HangUpFilled"));
|
|
1559
|
+
var import_HangUpOutlined = __toESM(require("./HangUpOutlined"));
|
|
1552
1560
|
var import_HashrateCenterFilled = __toESM(require("./HashrateCenterFilled"));
|
|
1553
1561
|
var import_HashrateCenterOutlined = __toESM(require("./HashrateCenterOutlined"));
|
|
1554
1562
|
var import_HashrateFilled = __toESM(require("./HashrateFilled"));
|
|
@@ -1694,6 +1702,7 @@ var import_ManualAlarmCircleOutlined = __toESM(require("./ManualAlarmCircleOutli
|
|
|
1694
1702
|
var import_ManualOutlined = __toESM(require("./ManualOutlined"));
|
|
1695
1703
|
var import_Map2DOutlined = __toESM(require("./Map2DOutlined"));
|
|
1696
1704
|
var import_Map3DOutlined = __toESM(require("./Map3DOutlined"));
|
|
1705
|
+
var import_MaximizeOutlined = __toESM(require("./MaximizeOutlined"));
|
|
1697
1706
|
var import_MeansAccessOutlined = __toESM(require("./MeansAccessOutlined"));
|
|
1698
1707
|
var import_MedalsFilled = __toESM(require("./MedalsFilled"));
|
|
1699
1708
|
var import_MedalsOutlined = __toESM(require("./MedalsOutlined"));
|
|
@@ -1715,6 +1724,7 @@ var import_MigrateOutlined = __toESM(require("./MigrateOutlined"));
|
|
|
1715
1724
|
var import_MiniatureFireStationAddOutlined = __toESM(require("./MiniatureFireStationAddOutlined"));
|
|
1716
1725
|
var import_MiniatureFireStationFilled = __toESM(require("./MiniatureFireStationFilled"));
|
|
1717
1726
|
var import_MiniatureFireStationOutlined = __toESM(require("./MiniatureFireStationOutlined"));
|
|
1727
|
+
var import_MinimizeOutlined = __toESM(require("./MinimizeOutlined"));
|
|
1718
1728
|
var import_MinusCircleFilled = __toESM(require("./MinusCircleFilled"));
|
|
1719
1729
|
var import_MinusCircleOutlined = __toESM(require("./MinusCircleOutlined"));
|
|
1720
1730
|
var import_MinusOutlined = __toESM(require("./MinusOutlined"));
|
|
@@ -2313,6 +2323,7 @@ var import_ZoomPlusOutlined = __toESM(require("./ZoomPlusOutlined"));
|
|
|
2313
2323
|
CalendarCheckOutlined,
|
|
2314
2324
|
CalendarClockOutlined,
|
|
2315
2325
|
CalendarOutlined,
|
|
2326
|
+
CallBackOutlined,
|
|
2316
2327
|
CallVideoFilled,
|
|
2317
2328
|
CallVideoOutlined,
|
|
2318
2329
|
CameraFilled,
|
|
@@ -2629,6 +2640,8 @@ var import_ZoomPlusOutlined = __toESM(require("./ZoomPlusOutlined"));
|
|
|
2629
2640
|
GroupRuleOutlined,
|
|
2630
2641
|
HailOutlined,
|
|
2631
2642
|
HandcuffsOutlined,
|
|
2643
|
+
HangUpFilled,
|
|
2644
|
+
HangUpOutlined,
|
|
2632
2645
|
HashrateCenterFilled,
|
|
2633
2646
|
HashrateCenterOutlined,
|
|
2634
2647
|
HashrateFilled,
|
|
@@ -2774,6 +2787,7 @@ var import_ZoomPlusOutlined = __toESM(require("./ZoomPlusOutlined"));
|
|
|
2774
2787
|
ManualOutlined,
|
|
2775
2788
|
Map2DOutlined,
|
|
2776
2789
|
Map3DOutlined,
|
|
2790
|
+
MaximizeOutlined,
|
|
2777
2791
|
MeansAccessOutlined,
|
|
2778
2792
|
MedalsFilled,
|
|
2779
2793
|
MedalsOutlined,
|
|
@@ -2795,6 +2809,7 @@ var import_ZoomPlusOutlined = __toESM(require("./ZoomPlusOutlined"));
|
|
|
2795
2809
|
MiniatureFireStationAddOutlined,
|
|
2796
2810
|
MiniatureFireStationFilled,
|
|
2797
2811
|
MiniatureFireStationOutlined,
|
|
2812
|
+
MinimizeOutlined,
|
|
2798
2813
|
MinusCircleFilled,
|
|
2799
2814
|
MinusCircleOutlined,
|
|
2800
2815
|
MinusOutlined,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sensoro-design/icons",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.94.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.94.0"
|
|
31
31
|
},
|
|
32
32
|
"publishConfig": {
|
|
33
33
|
"access": "public"
|