@semcore/icon 2.32.2 → 3.0.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 +16 -12
- package/LICENSE +21 -0
- package/Stoller/l/index.d.ts +7 -0
- package/Stoller/l/index.js +49 -0
- package/Stoller/l/index.mjs +29 -0
- package/Stoller/m/index.d.ts +7 -0
- package/Stoller/m/index.js +52 -0
- package/Stoller/m/index.mjs +32 -0
- package/lib/cjs/Icon.js +7 -7
- package/lib/es6/Icon.js +7 -7
- package/package.json +11 -11
- package/svg-new/icon/Stoller/l.svg +1 -0
- package/svg-new/icon/Stoller/m.svg +1 -0
- package/AppBlock/l/index.d.ts +0 -5
- package/AppBlock/l/index.js +0 -14
- package/AppBlock/l/index.mjs +0 -8
- package/AppBlock/m/index.d.ts +0 -5
- package/AppBlock/m/index.js +0 -14
- package/AppBlock/m/index.mjs +0 -8
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,22 @@
|
|
|
2
2
|
|
|
3
3
|
CHANGELOG.md standards are inspired by [keepachangelog.com](https://keepachangelog.com/en/1.0.0/).
|
|
4
4
|
|
|
5
|
+
## [3.0.0] - 2022-10-10
|
|
6
|
+
|
|
7
|
+
### BREAK
|
|
8
|
+
|
|
9
|
+
- Remove `AppBlock` icon, use `AppsBlock` instead.
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
|
|
13
|
+
- Added support for React 18 🔥
|
|
14
|
+
|
|
15
|
+
## [2.33.0] - 2022-10-06
|
|
16
|
+
|
|
17
|
+
### Added
|
|
18
|
+
|
|
19
|
+
- Added icon Stoller
|
|
20
|
+
|
|
5
21
|
## [2.32.2] - 2022-10-04
|
|
6
22
|
|
|
7
23
|
### Changed
|
|
@@ -54,18 +70,6 @@ CHANGELOG.md standards are inspired by [keepachangelog.com](https://keepachangel
|
|
|
54
70
|
|
|
55
71
|
- Version patch update due to children dependencies update (`@semcore/utils` [3.36.0 ~> 3.37.0], `@semcore/flex-box` [4.5.9 ~> 4.5.10]).
|
|
56
72
|
|
|
57
|
-
## [2.29.4] - 2022-08-11
|
|
58
|
-
|
|
59
|
-
### Changed
|
|
60
|
-
|
|
61
|
-
- Version patch update due to children dependencies update (`@semcore/utils` [3.35.1 ~> 3.36.0], `@semcore/flex-box` [4.5.8 ~> 4.5.9]).
|
|
62
|
-
|
|
63
|
-
## [2.29.3] - 2022-08-01
|
|
64
|
-
|
|
65
|
-
### Changed
|
|
66
|
-
|
|
67
|
-
- Version patch update due to children dependencies update (`@semcore/utils` [3.35.0 ~> 3.35.1], `@semcore/flex-box` [4.5.7 ~> 4.5.8]).
|
|
68
|
-
|
|
69
73
|
## [2.29.2] - 2022-07-25
|
|
70
74
|
|
|
71
75
|
### Fixed
|
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright ©, 2022, Semrush Inc. (written by Roman Lysov, Sergey Kobets, Mikhail Karachev, Julia Mnizhek, Elena Krasnopolskaia, Mikhail Sereniti).
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import { Merge } from '@semcore/core';
|
|
4
|
+
import { IIconProps } from '@semcore/icon';
|
|
5
|
+
declare const _default: import("@semcore/core").ComponentType<Merge<IIconProps, React.SVGAttributes<SVGElement>>, {}, {}>;
|
|
6
|
+
export default _default;
|
|
7
|
+
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports["default"] = void 0;
|
|
9
|
+
|
|
10
|
+
var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
|
|
11
|
+
|
|
12
|
+
var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
|
|
13
|
+
|
|
14
|
+
var _react = _interopRequireDefault(require("react"));
|
|
15
|
+
|
|
16
|
+
var _core = require("@semcore/core");
|
|
17
|
+
|
|
18
|
+
var _icon = _interopRequireDefault(require("@semcore/icon"));
|
|
19
|
+
|
|
20
|
+
var _excluded = ["width", "height", "viewBox"];
|
|
21
|
+
|
|
22
|
+
function Stoller(_ref, ref) {
|
|
23
|
+
var _ref$width = _ref.width,
|
|
24
|
+
width = _ref$width === void 0 ? '24' : _ref$width,
|
|
25
|
+
_ref$height = _ref.height,
|
|
26
|
+
height = _ref$height === void 0 ? '24' : _ref$height,
|
|
27
|
+
_ref$viewBox = _ref.viewBox,
|
|
28
|
+
viewBox = _ref$viewBox === void 0 ? '0 0 24 24' : _ref$viewBox,
|
|
29
|
+
props = (0, _objectWithoutProperties2["default"])(_ref, _excluded);
|
|
30
|
+
return /*#__PURE__*/_react["default"].createElement(_icon["default"], (0, _extends2["default"])({
|
|
31
|
+
ref: ref,
|
|
32
|
+
"data-name": "Stoller",
|
|
33
|
+
"data-group": "l",
|
|
34
|
+
width: width,
|
|
35
|
+
height: height,
|
|
36
|
+
viewBox: viewBox
|
|
37
|
+
}, props), /*#__PURE__*/_react["default"].createElement("path", {
|
|
38
|
+
fillRule: "evenodd",
|
|
39
|
+
clipRule: "evenodd",
|
|
40
|
+
d: "M5.129 5.89 6.535 8H13V1.818C13 .814 13.814 0 14.818 0h.682a7.5 7.5 0 0 1 0 15H10a5 5 0 0 1-5-5v-.696L3.466 7H2a1 1 0 0 1 0-2h1.465a2 2 0 0 1 1.664.89ZM13 10a2 2 0 0 0 2-2V2h.5a5.5 5.5 0 1 1 0 11H10a3 3 0 0 1-3-3h6ZM7 20a3 3 0 1 0 6 0 3 3 0 0 0-6 0Zm4 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM15 20a3 3 0 1 0 6 0 3 3 0 0 0-6 0Zm3 1a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z",
|
|
41
|
+
shapeRendering: "geometricPrecision"
|
|
42
|
+
}));
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
Stoller.displayName = 'Stoller';
|
|
46
|
+
|
|
47
|
+
var _default = (0, _core.createBaseComponent)(Stoller);
|
|
48
|
+
|
|
49
|
+
exports["default"] = _default;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
2
|
+
|
|
3
|
+
import React from 'react';
|
|
4
|
+
import { createBaseComponent } from '@semcore/core';
|
|
5
|
+
import Icon from '@semcore/icon';
|
|
6
|
+
|
|
7
|
+
function Stoller({
|
|
8
|
+
width = '24',
|
|
9
|
+
height = '24',
|
|
10
|
+
viewBox = '0 0 24 24',
|
|
11
|
+
...props
|
|
12
|
+
}, ref) {
|
|
13
|
+
return /*#__PURE__*/React.createElement(Icon, _extends({
|
|
14
|
+
ref: ref,
|
|
15
|
+
"data-name": "Stoller",
|
|
16
|
+
"data-group": "l",
|
|
17
|
+
width: width,
|
|
18
|
+
height: height,
|
|
19
|
+
viewBox: viewBox
|
|
20
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
21
|
+
fillRule: "evenodd",
|
|
22
|
+
clipRule: "evenodd",
|
|
23
|
+
d: "M5.129 5.89 6.535 8H13V1.818C13 .814 13.814 0 14.818 0h.682a7.5 7.5 0 0 1 0 15H10a5 5 0 0 1-5-5v-.696L3.466 7H2a1 1 0 0 1 0-2h1.465a2 2 0 0 1 1.664.89ZM13 10a2 2 0 0 0 2-2V2h.5a5.5 5.5 0 1 1 0 11H10a3 3 0 0 1-3-3h6ZM7 20a3 3 0 1 0 6 0 3 3 0 0 0-6 0Zm4 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM15 20a3 3 0 1 0 6 0 3 3 0 0 0-6 0Zm3 1a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z",
|
|
24
|
+
shapeRendering: "geometricPrecision"
|
|
25
|
+
}));
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
Stoller.displayName = 'Stoller';
|
|
29
|
+
export default createBaseComponent(Stoller);
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import { Merge } from '@semcore/core';
|
|
4
|
+
import { IIconProps } from '@semcore/icon';
|
|
5
|
+
declare const _default: import("@semcore/core").ComponentType<Merge<IIconProps, React.SVGAttributes<SVGElement>>, {}, {}>;
|
|
6
|
+
export default _default;
|
|
7
|
+
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports["default"] = void 0;
|
|
9
|
+
|
|
10
|
+
var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
|
|
11
|
+
|
|
12
|
+
var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
|
|
13
|
+
|
|
14
|
+
var _react = _interopRequireDefault(require("react"));
|
|
15
|
+
|
|
16
|
+
var _core = require("@semcore/core");
|
|
17
|
+
|
|
18
|
+
var _icon = _interopRequireDefault(require("@semcore/icon"));
|
|
19
|
+
|
|
20
|
+
var _excluded = ["width", "height", "viewBox"];
|
|
21
|
+
|
|
22
|
+
function Stoller(_ref, ref) {
|
|
23
|
+
var _ref$width = _ref.width,
|
|
24
|
+
width = _ref$width === void 0 ? '16' : _ref$width,
|
|
25
|
+
_ref$height = _ref.height,
|
|
26
|
+
height = _ref$height === void 0 ? '16' : _ref$height,
|
|
27
|
+
_ref$viewBox = _ref.viewBox,
|
|
28
|
+
viewBox = _ref$viewBox === void 0 ? '0 0 16 16' : _ref$viewBox,
|
|
29
|
+
props = (0, _objectWithoutProperties2["default"])(_ref, _excluded);
|
|
30
|
+
return /*#__PURE__*/_react["default"].createElement(_icon["default"], (0, _extends2["default"])({
|
|
31
|
+
ref: ref,
|
|
32
|
+
"data-name": "Stoller",
|
|
33
|
+
"data-group": "m",
|
|
34
|
+
width: width,
|
|
35
|
+
height: height,
|
|
36
|
+
viewBox: viewBox
|
|
37
|
+
}, props), /*#__PURE__*/_react["default"].createElement("path", {
|
|
38
|
+
fillRule: "evenodd",
|
|
39
|
+
clipRule: "evenodd",
|
|
40
|
+
d: "M8 0a1 1 0 0 0-1 1v4H3.766l-.909-1.514A1 1 0 0 0 2 3H1a1 1 0 0 0 0 2h.434L2 5.946A1.016 1.016 0 0 0 2 6v1a4 4 0 0 0 4 4h3.5a5.5 5.5 0 1 0 0-11H8ZM7 7a2 2 0 0 0 2-2V2h.5a3.486 3.486 0 0 1 1.668.422A3.5 3.5 0 0 1 9.5 9H6a2 2 0 0 1-2-2h3Z",
|
|
41
|
+
shapeRendering: "geometricPrecision"
|
|
42
|
+
}), /*#__PURE__*/_react["default"].createElement("path", {
|
|
43
|
+
d: "M4 14.5a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0ZM10.5 13a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3Z",
|
|
44
|
+
shapeRendering: "geometricPrecision"
|
|
45
|
+
}));
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
Stoller.displayName = 'Stoller';
|
|
49
|
+
|
|
50
|
+
var _default = (0, _core.createBaseComponent)(Stoller);
|
|
51
|
+
|
|
52
|
+
exports["default"] = _default;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
2
|
+
|
|
3
|
+
import React from 'react';
|
|
4
|
+
import { createBaseComponent } from '@semcore/core';
|
|
5
|
+
import Icon from '@semcore/icon';
|
|
6
|
+
|
|
7
|
+
function Stoller({
|
|
8
|
+
width = '16',
|
|
9
|
+
height = '16',
|
|
10
|
+
viewBox = '0 0 16 16',
|
|
11
|
+
...props
|
|
12
|
+
}, ref) {
|
|
13
|
+
return /*#__PURE__*/React.createElement(Icon, _extends({
|
|
14
|
+
ref: ref,
|
|
15
|
+
"data-name": "Stoller",
|
|
16
|
+
"data-group": "m",
|
|
17
|
+
width: width,
|
|
18
|
+
height: height,
|
|
19
|
+
viewBox: viewBox
|
|
20
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
21
|
+
fillRule: "evenodd",
|
|
22
|
+
clipRule: "evenodd",
|
|
23
|
+
d: "M8 0a1 1 0 0 0-1 1v4H3.766l-.909-1.514A1 1 0 0 0 2 3H1a1 1 0 0 0 0 2h.434L2 5.946A1.016 1.016 0 0 0 2 6v1a4 4 0 0 0 4 4h3.5a5.5 5.5 0 1 0 0-11H8ZM7 7a2 2 0 0 0 2-2V2h.5a3.486 3.486 0 0 1 1.668.422A3.5 3.5 0 0 1 9.5 9H6a2 2 0 0 1-2-2h3Z",
|
|
24
|
+
shapeRendering: "geometricPrecision"
|
|
25
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
26
|
+
d: "M4 14.5a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0ZM10.5 13a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3Z",
|
|
27
|
+
shapeRendering: "geometricPrecision"
|
|
28
|
+
}));
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
Stoller.displayName = 'Stoller';
|
|
32
|
+
export default createBaseComponent(Stoller);
|
package/lib/cjs/Icon.js
CHANGED
|
@@ -48,16 +48,16 @@ var styles = (
|
|
|
48
48
|
/*__reshadow_css_start__*/
|
|
49
49
|
_core.sstyled.insert(
|
|
50
50
|
/*__inner_css_start__*/
|
|
51
|
-
".
|
|
51
|
+
":root {\n\n /* DEPRECATED START\n Deprecated variables should never be used in\n components styles but preserved for backward\n compatibility if they used in projects\n like `<Badge bg=\"red\">alpha</Badge>`\n */\n /* DEPRECATED END */\n}\n\n.___SIcon_1qc50_gg_ {\n display: inline-block;\n -webkit-user-select: none;\n -moz-user-select: none;\n user-select: none;\n shape-rendering: geometricPrecision;\n box-sizing: content-box;\n fill: currentColor;\n flex-shrink: 0;\n outline: none;\n color: var(--color_1qc50);\n}\n\n.___SIcon_1qc50_gg_.__keyboardFocused_1qc50_gg_ {\n box-shadow: 0 0 0 3px rgba(0, 143, 248, 0.2);\n}\n\n.___SIcon_1qc50_gg_.__interactive_1qc50_gg_ {\n cursor: pointer\n}\n\n.___SIcon_1qc50_gg_.__interactive_1qc50_gg_:hover {\n color: var(--color-interactive_1qc50);\n }\n"
|
|
52
52
|
/*__inner_css_end__*/
|
|
53
|
-
, "
|
|
53
|
+
, "1qc50_gg_")
|
|
54
54
|
/*__reshadow_css_end__*/
|
|
55
55
|
, {
|
|
56
|
-
"__SIcon": "
|
|
57
|
-
"--color": "--
|
|
58
|
-
"_keyboardFocused": "
|
|
59
|
-
"_interactive": "
|
|
60
|
-
"--color-interactive": "--color-
|
|
56
|
+
"__SIcon": "___SIcon_1qc50_gg_",
|
|
57
|
+
"--color": "--color_1qc50",
|
|
58
|
+
"_keyboardFocused": "__keyboardFocused_1qc50_gg_",
|
|
59
|
+
"_interactive": "__interactive_1qc50_gg_",
|
|
60
|
+
"--color-interactive": "--color-interactive_1qc50"
|
|
61
61
|
});
|
|
62
62
|
|
|
63
63
|
function Icon(props, ref) {
|
package/lib/es6/Icon.js
CHANGED
|
@@ -23,16 +23,16 @@ var styles = (
|
|
|
23
23
|
/*__reshadow_css_start__*/
|
|
24
24
|
_sstyled.insert(
|
|
25
25
|
/*__inner_css_start__*/
|
|
26
|
-
".
|
|
26
|
+
":root {\n\n /* DEPRECATED START\n Deprecated variables should never be used in\n components styles but preserved for backward\n compatibility if they used in projects\n like `<Badge bg=\"red\">alpha</Badge>`\n */\n /* DEPRECATED END */\n}\n\n.___SIcon_1qc50_gg_ {\n display: inline-block;\n -webkit-user-select: none;\n -moz-user-select: none;\n user-select: none;\n shape-rendering: geometricPrecision;\n box-sizing: content-box;\n fill: currentColor;\n flex-shrink: 0;\n outline: none;\n color: var(--color_1qc50);\n}\n\n.___SIcon_1qc50_gg_.__keyboardFocused_1qc50_gg_ {\n box-shadow: 0 0 0 3px rgba(0, 143, 248, 0.2);\n}\n\n.___SIcon_1qc50_gg_.__interactive_1qc50_gg_ {\n cursor: pointer\n}\n\n.___SIcon_1qc50_gg_.__interactive_1qc50_gg_:hover {\n color: var(--color-interactive_1qc50);\n }\n"
|
|
27
27
|
/*__inner_css_end__*/
|
|
28
|
-
, "
|
|
28
|
+
, "1qc50_gg_")
|
|
29
29
|
/*__reshadow_css_end__*/
|
|
30
30
|
, {
|
|
31
|
-
"__SIcon": "
|
|
32
|
-
"--color": "--
|
|
33
|
-
"_keyboardFocused": "
|
|
34
|
-
"_interactive": "
|
|
35
|
-
"--color-interactive": "--color-
|
|
31
|
+
"__SIcon": "___SIcon_1qc50_gg_",
|
|
32
|
+
"--color": "--color_1qc50",
|
|
33
|
+
"_keyboardFocused": "__keyboardFocused_1qc50_gg_",
|
|
34
|
+
"_interactive": "__interactive_1qc50_gg_",
|
|
35
|
+
"--color-interactive": "--color-interactive_1qc50"
|
|
36
36
|
});
|
|
37
37
|
|
|
38
38
|
function Icon(props, ref) {
|
package/package.json
CHANGED
|
@@ -1,20 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@semcore/icon",
|
|
3
3
|
"description": "Semrush Icon Component",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "3.0.0",
|
|
5
5
|
"main": "lib/cjs/index.js",
|
|
6
6
|
"module": "lib/es6/index.js",
|
|
7
7
|
"typings": "lib/types/index.d.ts",
|
|
8
8
|
"sideEffects": false,
|
|
9
9
|
"author": "UI-kit team <ui-kit-team@semrush.com>",
|
|
10
10
|
"license": "MIT",
|
|
11
|
-
"scripts": {
|
|
12
|
-
"parsing": "icon-transform-svg parsing",
|
|
13
|
-
"transform": "icon-transform-svg",
|
|
14
|
-
"build": "pnpm run clean && pnpm semcore-builder --source=js && pnpm icon-transform-svg --configFile=./transform-svg-legacy.config.js && pnpm icon-transform-svg --configFile=./transform-svg.config.js",
|
|
15
|
-
"test": "jest",
|
|
16
|
-
"clean": "ls -d */ | egrep -v \"__tests__|src|svg|svg-new|node_modules|AppBlock\" | xargs rm -rf"
|
|
17
|
-
},
|
|
18
11
|
"dependencies": {
|
|
19
12
|
"@semcore/utils": "^3.15",
|
|
20
13
|
"@semcore/flex-box": "^4",
|
|
@@ -22,7 +15,7 @@
|
|
|
22
15
|
},
|
|
23
16
|
"peerDependencies": {
|
|
24
17
|
"@semcore/core": "^1.11",
|
|
25
|
-
"react": "16.8 -
|
|
18
|
+
"react": "16.8 - 18"
|
|
26
19
|
},
|
|
27
20
|
"jest": {
|
|
28
21
|
"preset": "@semcore/jest-preset-ui"
|
|
@@ -33,8 +26,15 @@
|
|
|
33
26
|
"directory": "semcore/icon"
|
|
34
27
|
},
|
|
35
28
|
"devDependencies": {
|
|
36
|
-
"@types/react": "
|
|
29
|
+
"@types/react": "18.0.21",
|
|
37
30
|
"@semcore/jest-preset-ui": "1.0.0",
|
|
38
31
|
"@semcore/icon-transform-svg": "1.0.0"
|
|
32
|
+
},
|
|
33
|
+
"scripts": {
|
|
34
|
+
"parsing": "icon-transform-svg parsing",
|
|
35
|
+
"transform": "icon-transform-svg",
|
|
36
|
+
"build": "pnpm run clean && pnpm semcore-builder --source=js && pnpm icon-transform-svg --configFile=./transform-svg-legacy.config.js && pnpm icon-transform-svg --configFile=./transform-svg.config.js",
|
|
37
|
+
"test": "jest",
|
|
38
|
+
"clean": "ls -d */ | egrep -v \"__tests__|src|svg|svg-new|node_modules\" | xargs rm -rf"
|
|
39
39
|
}
|
|
40
|
-
}
|
|
40
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M5.129 5.89 6.535 8H13V1.818C13 .814 13.814 0 14.818 0h.682a7.5 7.5 0 0 1 0 15H10a5 5 0 0 1-5-5v-.696L3.466 7H2a1 1 0 0 1 0-2h1.465a2 2 0 0 1 1.664.89ZM13 10a2 2 0 0 0 2-2V2h.5a5.5 5.5 0 1 1 0 11H10a3 3 0 0 1-3-3h6ZM7 20a3 3 0 1 0 6 0 3 3 0 0 0-6 0Zm4 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM15 20a3 3 0 1 0 6 0 3 3 0 0 0-6 0Zm3 1a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M8 0a1 1 0 0 0-1 1v4H3.766l-.909-1.514A1 1 0 0 0 2 3H1a1 1 0 0 0 0 2h.434L2 5.946A1.016 1.016 0 0 0 2 6v1a4 4 0 0 0 4 4h3.5a5.5 5.5 0 1 0 0-11H8ZM7 7a2 2 0 0 0 2-2V2h.5a3.486 3.486 0 0 1 1.668.422A3.5 3.5 0 0 1 9.5 9H6a2 2 0 0 1-2-2h3Z"/><path d="M4 14.5a1.5 1.5 0 1 1 3 0 1.5 1.5 0 0 1-3 0ZM10.5 13a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3Z"/></svg>
|
package/AppBlock/l/index.d.ts
DELETED
package/AppBlock/l/index.js
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
'use strict';
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, '__esModule', {
|
|
4
|
-
value: true,
|
|
5
|
-
});
|
|
6
|
-
|
|
7
|
-
var AppsBlock = require('../../AppsBlock/l');
|
|
8
|
-
|
|
9
|
-
/**
|
|
10
|
-
* @deprecated Please, use `AppsBlock/l` instead. This icon will be removed in the next major release
|
|
11
|
-
* */
|
|
12
|
-
var AppBlock = AppsBlock;
|
|
13
|
-
|
|
14
|
-
exports['default'] = AppBlock;
|
package/AppBlock/l/index.mjs
DELETED
package/AppBlock/m/index.d.ts
DELETED
package/AppBlock/m/index.js
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
'use strict';
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, '__esModule', {
|
|
4
|
-
value: true,
|
|
5
|
-
});
|
|
6
|
-
|
|
7
|
-
var AppsBlock = require('../../AppsBlock/m');
|
|
8
|
-
|
|
9
|
-
/**
|
|
10
|
-
* @deprecated Please, use `AppsBlock/m` instead. This icon will be removed in the next major release
|
|
11
|
-
* */
|
|
12
|
-
var AppBlock = AppsBlock;
|
|
13
|
-
|
|
14
|
-
exports['default'] = AppBlock;
|