hanbiro-react16-sdk 1.0.22 → 1.0.24
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/dist/components/ChatAIDraft/EmptyState.d.ts +6 -0
- package/dist/components/ChatAIDraft/EmptyState.js +222 -0
- package/dist/components/ChatAIDraft/List.js +55 -18
- package/dist/components/ChatAIDraft/SettingPopper/ChipGroup.d.ts +11 -0
- package/dist/components/ChatAIDraft/SettingPopper/ChipGroup.js +62 -0
- package/dist/components/ChatAIDraft/SettingPopper/LanguageSelect.d.ts +21 -0
- package/dist/components/ChatAIDraft/SettingPopper/LanguageSelect.js +137 -0
- package/dist/components/ChatAIDraft/SettingPopper/icons.d.ts +3 -0
- package/dist/components/ChatAIDraft/SettingPopper/icons.js +30 -0
- package/dist/components/ChatAIDraft/{SettingPopper.d.ts → SettingPopper/index.d.ts} +5 -5
- package/dist/components/ChatAIDraft/{SettingPopper.js → SettingPopper/index.js} +37 -77
- package/dist/components/ChatAIDraft/constants.d.ts +4 -0
- package/dist/components/ChatAIDraft/constants.js +18 -0
- package/dist/components/ChatAIDraft/index.d.ts +8 -8
- package/dist/components/ChatAIDraft/index.js +100 -52
- package/dist/components/index.d.ts +1 -1
- package/dist/hanbiro-react16-sdk.style.css +39 -2
- package/dist/hanbiro-react16-sdk.umd.js +2244 -1646
- package/dist/index.js +2 -2
- package/dist/node_modules/prop-types/index.js +1 -2
- package/dist/node_modules/react-feather/dist/icons/align-justify.js +86 -0
- package/dist/node_modules/react-feather/dist/icons/{send.js → arrow-up.js} +10 -10
- package/dist/node_modules/react-feather/dist/icons/award.js +72 -0
- package/dist/node_modules/react-feather/dist/icons/check.js +68 -0
- package/dist/node_modules/react-feather/dist/icons/chevron-down.js +68 -0
- package/dist/node_modules/react-feather/dist/icons/compass.js +72 -0
- package/dist/node_modules/react-feather/dist/icons/file-text.js +82 -0
- package/dist/node_modules/react-feather/dist/icons/frown.js +82 -0
- package/dist/node_modules/react-feather/dist/icons/heart.js +68 -0
- package/dist/node_modules/react-feather/dist/icons/message-circle.js +68 -0
- package/dist/node_modules/react-feather/dist/icons/message-square.js +68 -0
- package/dist/node_modules/react-feather/dist/icons/scissors.js +89 -0
- package/dist/node_modules/react-feather/dist/icons/smile.js +82 -0
- package/dist/node_modules/react-feather/dist/icons/thumbs-up.js +68 -0
- package/dist/node_modules/react-feather/dist/icons/zap.js +68 -0
- package/package.json +1 -1
- package/dist/components/TinyMceEditor/index.js +0 -181
- package/dist/components/TinyMceEditor/scrollStyle.js +0 -40
- package/dist/components/TinyMceEditor/useEditor.js +0 -120
- package/dist/node_modules/@tinymce/tinymce-react/lib/es2015/main/ts/ScriptLoader2.js +0 -148
- package/dist/node_modules/@tinymce/tinymce-react/lib/es2015/main/ts/TinyMCE.js +0 -7
- package/dist/node_modules/@tinymce/tinymce-react/lib/es2015/main/ts/Utils.js +0 -103
- package/dist/node_modules/@tinymce/tinymce-react/lib/es2015/main/ts/components/Editor.js +0 -353
- package/dist/node_modules/@tinymce/tinymce-react/lib/es2015/main/ts/components/EditorPropTypes.js +0 -102
package/dist/index.js
CHANGED
|
@@ -7,6 +7,5 @@ import { f as factoryWithThrowingShims } from "./factoryWithThrowingShims.js";
|
|
|
7
7
|
var propTypesExports = propTypes.exports;
|
|
8
8
|
const PropTypes = /* @__PURE__ */ getDefaultExportFromCjs(propTypesExports);
|
|
9
9
|
export {
|
|
10
|
-
PropTypes as default
|
|
11
|
-
propTypesExports as p
|
|
10
|
+
PropTypes as default
|
|
12
11
|
};
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
import React__default, { forwardRef } from "react";
|
|
2
|
+
import PropTypes from "../../../prop-types/index.js";
|
|
3
|
+
function _extends() {
|
|
4
|
+
_extends = Object.assign || function(target) {
|
|
5
|
+
for (var i = 1; i < arguments.length; i++) {
|
|
6
|
+
var source = arguments[i];
|
|
7
|
+
for (var key in source) {
|
|
8
|
+
if (Object.prototype.hasOwnProperty.call(source, key)) {
|
|
9
|
+
target[key] = source[key];
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
return target;
|
|
14
|
+
};
|
|
15
|
+
return _extends.apply(this, arguments);
|
|
16
|
+
}
|
|
17
|
+
function _objectWithoutProperties(source, excluded) {
|
|
18
|
+
if (source == null) return {};
|
|
19
|
+
var target = _objectWithoutPropertiesLoose(source, excluded);
|
|
20
|
+
var key, i;
|
|
21
|
+
if (Object.getOwnPropertySymbols) {
|
|
22
|
+
var sourceSymbolKeys = Object.getOwnPropertySymbols(source);
|
|
23
|
+
for (i = 0; i < sourceSymbolKeys.length; i++) {
|
|
24
|
+
key = sourceSymbolKeys[i];
|
|
25
|
+
if (excluded.indexOf(key) >= 0) continue;
|
|
26
|
+
if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue;
|
|
27
|
+
target[key] = source[key];
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
return target;
|
|
31
|
+
}
|
|
32
|
+
function _objectWithoutPropertiesLoose(source, excluded) {
|
|
33
|
+
if (source == null) return {};
|
|
34
|
+
var target = {};
|
|
35
|
+
var sourceKeys = Object.keys(source);
|
|
36
|
+
var key, i;
|
|
37
|
+
for (i = 0; i < sourceKeys.length; i++) {
|
|
38
|
+
key = sourceKeys[i];
|
|
39
|
+
if (excluded.indexOf(key) >= 0) continue;
|
|
40
|
+
target[key] = source[key];
|
|
41
|
+
}
|
|
42
|
+
return target;
|
|
43
|
+
}
|
|
44
|
+
var AlignJustify = forwardRef(function(_ref, ref) {
|
|
45
|
+
var _ref$color = _ref.color, color = _ref$color === void 0 ? "currentColor" : _ref$color, _ref$size = _ref.size, size = _ref$size === void 0 ? 24 : _ref$size, rest = _objectWithoutProperties(_ref, ["color", "size"]);
|
|
46
|
+
return /* @__PURE__ */ React__default.createElement("svg", _extends({
|
|
47
|
+
ref,
|
|
48
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
49
|
+
width: size,
|
|
50
|
+
height: size,
|
|
51
|
+
viewBox: "0 0 24 24",
|
|
52
|
+
fill: "none",
|
|
53
|
+
stroke: color,
|
|
54
|
+
strokeWidth: "2",
|
|
55
|
+
strokeLinecap: "round",
|
|
56
|
+
strokeLinejoin: "round"
|
|
57
|
+
}, rest), /* @__PURE__ */ React__default.createElement("line", {
|
|
58
|
+
x1: "21",
|
|
59
|
+
y1: "10",
|
|
60
|
+
x2: "3",
|
|
61
|
+
y2: "10"
|
|
62
|
+
}), /* @__PURE__ */ React__default.createElement("line", {
|
|
63
|
+
x1: "21",
|
|
64
|
+
y1: "6",
|
|
65
|
+
x2: "3",
|
|
66
|
+
y2: "6"
|
|
67
|
+
}), /* @__PURE__ */ React__default.createElement("line", {
|
|
68
|
+
x1: "21",
|
|
69
|
+
y1: "14",
|
|
70
|
+
x2: "3",
|
|
71
|
+
y2: "14"
|
|
72
|
+
}), /* @__PURE__ */ React__default.createElement("line", {
|
|
73
|
+
x1: "21",
|
|
74
|
+
y1: "18",
|
|
75
|
+
x2: "3",
|
|
76
|
+
y2: "18"
|
|
77
|
+
}));
|
|
78
|
+
});
|
|
79
|
+
AlignJustify.propTypes = {
|
|
80
|
+
color: PropTypes.string,
|
|
81
|
+
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
82
|
+
};
|
|
83
|
+
AlignJustify.displayName = "AlignJustify";
|
|
84
|
+
export {
|
|
85
|
+
AlignJustify as default
|
|
86
|
+
};
|
|
@@ -41,7 +41,7 @@ function _objectWithoutPropertiesLoose(source, excluded) {
|
|
|
41
41
|
}
|
|
42
42
|
return target;
|
|
43
43
|
}
|
|
44
|
-
var
|
|
44
|
+
var ArrowUp = forwardRef(function(_ref, ref) {
|
|
45
45
|
var _ref$color = _ref.color, color = _ref$color === void 0 ? "currentColor" : _ref$color, _ref$size = _ref.size, size = _ref$size === void 0 ? 24 : _ref$size, rest = _objectWithoutProperties(_ref, ["color", "size"]);
|
|
46
46
|
return /* @__PURE__ */ React__default.createElement("svg", _extends({
|
|
47
47
|
ref,
|
|
@@ -55,19 +55,19 @@ var Send = forwardRef(function(_ref, ref) {
|
|
|
55
55
|
strokeLinecap: "round",
|
|
56
56
|
strokeLinejoin: "round"
|
|
57
57
|
}, rest), /* @__PURE__ */ React__default.createElement("line", {
|
|
58
|
-
x1: "
|
|
59
|
-
y1: "
|
|
60
|
-
x2: "
|
|
61
|
-
y2: "
|
|
62
|
-
}), /* @__PURE__ */ React__default.createElement("
|
|
63
|
-
points: "
|
|
58
|
+
x1: "12",
|
|
59
|
+
y1: "19",
|
|
60
|
+
x2: "12",
|
|
61
|
+
y2: "5"
|
|
62
|
+
}), /* @__PURE__ */ React__default.createElement("polyline", {
|
|
63
|
+
points: "5 12 12 5 19 12"
|
|
64
64
|
}));
|
|
65
65
|
});
|
|
66
|
-
|
|
66
|
+
ArrowUp.propTypes = {
|
|
67
67
|
color: PropTypes.string,
|
|
68
68
|
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
69
69
|
};
|
|
70
|
-
|
|
70
|
+
ArrowUp.displayName = "ArrowUp";
|
|
71
71
|
export {
|
|
72
|
-
|
|
72
|
+
ArrowUp as default
|
|
73
73
|
};
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
import React__default, { forwardRef } from "react";
|
|
2
|
+
import PropTypes from "../../../prop-types/index.js";
|
|
3
|
+
function _extends() {
|
|
4
|
+
_extends = Object.assign || function(target) {
|
|
5
|
+
for (var i = 1; i < arguments.length; i++) {
|
|
6
|
+
var source = arguments[i];
|
|
7
|
+
for (var key in source) {
|
|
8
|
+
if (Object.prototype.hasOwnProperty.call(source, key)) {
|
|
9
|
+
target[key] = source[key];
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
return target;
|
|
14
|
+
};
|
|
15
|
+
return _extends.apply(this, arguments);
|
|
16
|
+
}
|
|
17
|
+
function _objectWithoutProperties(source, excluded) {
|
|
18
|
+
if (source == null) return {};
|
|
19
|
+
var target = _objectWithoutPropertiesLoose(source, excluded);
|
|
20
|
+
var key, i;
|
|
21
|
+
if (Object.getOwnPropertySymbols) {
|
|
22
|
+
var sourceSymbolKeys = Object.getOwnPropertySymbols(source);
|
|
23
|
+
for (i = 0; i < sourceSymbolKeys.length; i++) {
|
|
24
|
+
key = sourceSymbolKeys[i];
|
|
25
|
+
if (excluded.indexOf(key) >= 0) continue;
|
|
26
|
+
if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue;
|
|
27
|
+
target[key] = source[key];
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
return target;
|
|
31
|
+
}
|
|
32
|
+
function _objectWithoutPropertiesLoose(source, excluded) {
|
|
33
|
+
if (source == null) return {};
|
|
34
|
+
var target = {};
|
|
35
|
+
var sourceKeys = Object.keys(source);
|
|
36
|
+
var key, i;
|
|
37
|
+
for (i = 0; i < sourceKeys.length; i++) {
|
|
38
|
+
key = sourceKeys[i];
|
|
39
|
+
if (excluded.indexOf(key) >= 0) continue;
|
|
40
|
+
target[key] = source[key];
|
|
41
|
+
}
|
|
42
|
+
return target;
|
|
43
|
+
}
|
|
44
|
+
var Award = forwardRef(function(_ref, ref) {
|
|
45
|
+
var _ref$color = _ref.color, color = _ref$color === void 0 ? "currentColor" : _ref$color, _ref$size = _ref.size, size = _ref$size === void 0 ? 24 : _ref$size, rest = _objectWithoutProperties(_ref, ["color", "size"]);
|
|
46
|
+
return /* @__PURE__ */ React__default.createElement("svg", _extends({
|
|
47
|
+
ref,
|
|
48
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
49
|
+
width: size,
|
|
50
|
+
height: size,
|
|
51
|
+
viewBox: "0 0 24 24",
|
|
52
|
+
fill: "none",
|
|
53
|
+
stroke: color,
|
|
54
|
+
strokeWidth: "2",
|
|
55
|
+
strokeLinecap: "round",
|
|
56
|
+
strokeLinejoin: "round"
|
|
57
|
+
}, rest), /* @__PURE__ */ React__default.createElement("circle", {
|
|
58
|
+
cx: "12",
|
|
59
|
+
cy: "8",
|
|
60
|
+
r: "7"
|
|
61
|
+
}), /* @__PURE__ */ React__default.createElement("polyline", {
|
|
62
|
+
points: "8.21 13.89 7 23 12 20 17 23 15.79 13.88"
|
|
63
|
+
}));
|
|
64
|
+
});
|
|
65
|
+
Award.propTypes = {
|
|
66
|
+
color: PropTypes.string,
|
|
67
|
+
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
68
|
+
};
|
|
69
|
+
Award.displayName = "Award";
|
|
70
|
+
export {
|
|
71
|
+
Award as default
|
|
72
|
+
};
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
import React__default, { forwardRef } from "react";
|
|
2
|
+
import PropTypes from "../../../prop-types/index.js";
|
|
3
|
+
function _extends() {
|
|
4
|
+
_extends = Object.assign || function(target) {
|
|
5
|
+
for (var i = 1; i < arguments.length; i++) {
|
|
6
|
+
var source = arguments[i];
|
|
7
|
+
for (var key in source) {
|
|
8
|
+
if (Object.prototype.hasOwnProperty.call(source, key)) {
|
|
9
|
+
target[key] = source[key];
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
return target;
|
|
14
|
+
};
|
|
15
|
+
return _extends.apply(this, arguments);
|
|
16
|
+
}
|
|
17
|
+
function _objectWithoutProperties(source, excluded) {
|
|
18
|
+
if (source == null) return {};
|
|
19
|
+
var target = _objectWithoutPropertiesLoose(source, excluded);
|
|
20
|
+
var key, i;
|
|
21
|
+
if (Object.getOwnPropertySymbols) {
|
|
22
|
+
var sourceSymbolKeys = Object.getOwnPropertySymbols(source);
|
|
23
|
+
for (i = 0; i < sourceSymbolKeys.length; i++) {
|
|
24
|
+
key = sourceSymbolKeys[i];
|
|
25
|
+
if (excluded.indexOf(key) >= 0) continue;
|
|
26
|
+
if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue;
|
|
27
|
+
target[key] = source[key];
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
return target;
|
|
31
|
+
}
|
|
32
|
+
function _objectWithoutPropertiesLoose(source, excluded) {
|
|
33
|
+
if (source == null) return {};
|
|
34
|
+
var target = {};
|
|
35
|
+
var sourceKeys = Object.keys(source);
|
|
36
|
+
var key, i;
|
|
37
|
+
for (i = 0; i < sourceKeys.length; i++) {
|
|
38
|
+
key = sourceKeys[i];
|
|
39
|
+
if (excluded.indexOf(key) >= 0) continue;
|
|
40
|
+
target[key] = source[key];
|
|
41
|
+
}
|
|
42
|
+
return target;
|
|
43
|
+
}
|
|
44
|
+
var Check = forwardRef(function(_ref, ref) {
|
|
45
|
+
var _ref$color = _ref.color, color = _ref$color === void 0 ? "currentColor" : _ref$color, _ref$size = _ref.size, size = _ref$size === void 0 ? 24 : _ref$size, rest = _objectWithoutProperties(_ref, ["color", "size"]);
|
|
46
|
+
return /* @__PURE__ */ React__default.createElement("svg", _extends({
|
|
47
|
+
ref,
|
|
48
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
49
|
+
width: size,
|
|
50
|
+
height: size,
|
|
51
|
+
viewBox: "0 0 24 24",
|
|
52
|
+
fill: "none",
|
|
53
|
+
stroke: color,
|
|
54
|
+
strokeWidth: "2",
|
|
55
|
+
strokeLinecap: "round",
|
|
56
|
+
strokeLinejoin: "round"
|
|
57
|
+
}, rest), /* @__PURE__ */ React__default.createElement("polyline", {
|
|
58
|
+
points: "20 6 9 17 4 12"
|
|
59
|
+
}));
|
|
60
|
+
});
|
|
61
|
+
Check.propTypes = {
|
|
62
|
+
color: PropTypes.string,
|
|
63
|
+
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
64
|
+
};
|
|
65
|
+
Check.displayName = "Check";
|
|
66
|
+
export {
|
|
67
|
+
Check as default
|
|
68
|
+
};
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
import React__default, { forwardRef } from "react";
|
|
2
|
+
import PropTypes from "../../../prop-types/index.js";
|
|
3
|
+
function _extends() {
|
|
4
|
+
_extends = Object.assign || function(target) {
|
|
5
|
+
for (var i = 1; i < arguments.length; i++) {
|
|
6
|
+
var source = arguments[i];
|
|
7
|
+
for (var key in source) {
|
|
8
|
+
if (Object.prototype.hasOwnProperty.call(source, key)) {
|
|
9
|
+
target[key] = source[key];
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
return target;
|
|
14
|
+
};
|
|
15
|
+
return _extends.apply(this, arguments);
|
|
16
|
+
}
|
|
17
|
+
function _objectWithoutProperties(source, excluded) {
|
|
18
|
+
if (source == null) return {};
|
|
19
|
+
var target = _objectWithoutPropertiesLoose(source, excluded);
|
|
20
|
+
var key, i;
|
|
21
|
+
if (Object.getOwnPropertySymbols) {
|
|
22
|
+
var sourceSymbolKeys = Object.getOwnPropertySymbols(source);
|
|
23
|
+
for (i = 0; i < sourceSymbolKeys.length; i++) {
|
|
24
|
+
key = sourceSymbolKeys[i];
|
|
25
|
+
if (excluded.indexOf(key) >= 0) continue;
|
|
26
|
+
if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue;
|
|
27
|
+
target[key] = source[key];
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
return target;
|
|
31
|
+
}
|
|
32
|
+
function _objectWithoutPropertiesLoose(source, excluded) {
|
|
33
|
+
if (source == null) return {};
|
|
34
|
+
var target = {};
|
|
35
|
+
var sourceKeys = Object.keys(source);
|
|
36
|
+
var key, i;
|
|
37
|
+
for (i = 0; i < sourceKeys.length; i++) {
|
|
38
|
+
key = sourceKeys[i];
|
|
39
|
+
if (excluded.indexOf(key) >= 0) continue;
|
|
40
|
+
target[key] = source[key];
|
|
41
|
+
}
|
|
42
|
+
return target;
|
|
43
|
+
}
|
|
44
|
+
var ChevronDown = forwardRef(function(_ref, ref) {
|
|
45
|
+
var _ref$color = _ref.color, color = _ref$color === void 0 ? "currentColor" : _ref$color, _ref$size = _ref.size, size = _ref$size === void 0 ? 24 : _ref$size, rest = _objectWithoutProperties(_ref, ["color", "size"]);
|
|
46
|
+
return /* @__PURE__ */ React__default.createElement("svg", _extends({
|
|
47
|
+
ref,
|
|
48
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
49
|
+
width: size,
|
|
50
|
+
height: size,
|
|
51
|
+
viewBox: "0 0 24 24",
|
|
52
|
+
fill: "none",
|
|
53
|
+
stroke: color,
|
|
54
|
+
strokeWidth: "2",
|
|
55
|
+
strokeLinecap: "round",
|
|
56
|
+
strokeLinejoin: "round"
|
|
57
|
+
}, rest), /* @__PURE__ */ React__default.createElement("polyline", {
|
|
58
|
+
points: "6 9 12 15 18 9"
|
|
59
|
+
}));
|
|
60
|
+
});
|
|
61
|
+
ChevronDown.propTypes = {
|
|
62
|
+
color: PropTypes.string,
|
|
63
|
+
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
64
|
+
};
|
|
65
|
+
ChevronDown.displayName = "ChevronDown";
|
|
66
|
+
export {
|
|
67
|
+
ChevronDown as default
|
|
68
|
+
};
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
import React__default, { forwardRef } from "react";
|
|
2
|
+
import PropTypes from "../../../prop-types/index.js";
|
|
3
|
+
function _extends() {
|
|
4
|
+
_extends = Object.assign || function(target) {
|
|
5
|
+
for (var i = 1; i < arguments.length; i++) {
|
|
6
|
+
var source = arguments[i];
|
|
7
|
+
for (var key in source) {
|
|
8
|
+
if (Object.prototype.hasOwnProperty.call(source, key)) {
|
|
9
|
+
target[key] = source[key];
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
return target;
|
|
14
|
+
};
|
|
15
|
+
return _extends.apply(this, arguments);
|
|
16
|
+
}
|
|
17
|
+
function _objectWithoutProperties(source, excluded) {
|
|
18
|
+
if (source == null) return {};
|
|
19
|
+
var target = _objectWithoutPropertiesLoose(source, excluded);
|
|
20
|
+
var key, i;
|
|
21
|
+
if (Object.getOwnPropertySymbols) {
|
|
22
|
+
var sourceSymbolKeys = Object.getOwnPropertySymbols(source);
|
|
23
|
+
for (i = 0; i < sourceSymbolKeys.length; i++) {
|
|
24
|
+
key = sourceSymbolKeys[i];
|
|
25
|
+
if (excluded.indexOf(key) >= 0) continue;
|
|
26
|
+
if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue;
|
|
27
|
+
target[key] = source[key];
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
return target;
|
|
31
|
+
}
|
|
32
|
+
function _objectWithoutPropertiesLoose(source, excluded) {
|
|
33
|
+
if (source == null) return {};
|
|
34
|
+
var target = {};
|
|
35
|
+
var sourceKeys = Object.keys(source);
|
|
36
|
+
var key, i;
|
|
37
|
+
for (i = 0; i < sourceKeys.length; i++) {
|
|
38
|
+
key = sourceKeys[i];
|
|
39
|
+
if (excluded.indexOf(key) >= 0) continue;
|
|
40
|
+
target[key] = source[key];
|
|
41
|
+
}
|
|
42
|
+
return target;
|
|
43
|
+
}
|
|
44
|
+
var Compass = forwardRef(function(_ref, ref) {
|
|
45
|
+
var _ref$color = _ref.color, color = _ref$color === void 0 ? "currentColor" : _ref$color, _ref$size = _ref.size, size = _ref$size === void 0 ? 24 : _ref$size, rest = _objectWithoutProperties(_ref, ["color", "size"]);
|
|
46
|
+
return /* @__PURE__ */ React__default.createElement("svg", _extends({
|
|
47
|
+
ref,
|
|
48
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
49
|
+
width: size,
|
|
50
|
+
height: size,
|
|
51
|
+
viewBox: "0 0 24 24",
|
|
52
|
+
fill: "none",
|
|
53
|
+
stroke: color,
|
|
54
|
+
strokeWidth: "2",
|
|
55
|
+
strokeLinecap: "round",
|
|
56
|
+
strokeLinejoin: "round"
|
|
57
|
+
}, rest), /* @__PURE__ */ React__default.createElement("circle", {
|
|
58
|
+
cx: "12",
|
|
59
|
+
cy: "12",
|
|
60
|
+
r: "10"
|
|
61
|
+
}), /* @__PURE__ */ React__default.createElement("polygon", {
|
|
62
|
+
points: "16.24 7.76 14.12 14.12 7.76 16.24 9.88 9.88 16.24 7.76"
|
|
63
|
+
}));
|
|
64
|
+
});
|
|
65
|
+
Compass.propTypes = {
|
|
66
|
+
color: PropTypes.string,
|
|
67
|
+
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
68
|
+
};
|
|
69
|
+
Compass.displayName = "Compass";
|
|
70
|
+
export {
|
|
71
|
+
Compass as default
|
|
72
|
+
};
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
import React__default, { forwardRef } from "react";
|
|
2
|
+
import PropTypes from "../../../prop-types/index.js";
|
|
3
|
+
function _extends() {
|
|
4
|
+
_extends = Object.assign || function(target) {
|
|
5
|
+
for (var i = 1; i < arguments.length; i++) {
|
|
6
|
+
var source = arguments[i];
|
|
7
|
+
for (var key in source) {
|
|
8
|
+
if (Object.prototype.hasOwnProperty.call(source, key)) {
|
|
9
|
+
target[key] = source[key];
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
return target;
|
|
14
|
+
};
|
|
15
|
+
return _extends.apply(this, arguments);
|
|
16
|
+
}
|
|
17
|
+
function _objectWithoutProperties(source, excluded) {
|
|
18
|
+
if (source == null) return {};
|
|
19
|
+
var target = _objectWithoutPropertiesLoose(source, excluded);
|
|
20
|
+
var key, i;
|
|
21
|
+
if (Object.getOwnPropertySymbols) {
|
|
22
|
+
var sourceSymbolKeys = Object.getOwnPropertySymbols(source);
|
|
23
|
+
for (i = 0; i < sourceSymbolKeys.length; i++) {
|
|
24
|
+
key = sourceSymbolKeys[i];
|
|
25
|
+
if (excluded.indexOf(key) >= 0) continue;
|
|
26
|
+
if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue;
|
|
27
|
+
target[key] = source[key];
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
return target;
|
|
31
|
+
}
|
|
32
|
+
function _objectWithoutPropertiesLoose(source, excluded) {
|
|
33
|
+
if (source == null) return {};
|
|
34
|
+
var target = {};
|
|
35
|
+
var sourceKeys = Object.keys(source);
|
|
36
|
+
var key, i;
|
|
37
|
+
for (i = 0; i < sourceKeys.length; i++) {
|
|
38
|
+
key = sourceKeys[i];
|
|
39
|
+
if (excluded.indexOf(key) >= 0) continue;
|
|
40
|
+
target[key] = source[key];
|
|
41
|
+
}
|
|
42
|
+
return target;
|
|
43
|
+
}
|
|
44
|
+
var FileText = forwardRef(function(_ref, ref) {
|
|
45
|
+
var _ref$color = _ref.color, color = _ref$color === void 0 ? "currentColor" : _ref$color, _ref$size = _ref.size, size = _ref$size === void 0 ? 24 : _ref$size, rest = _objectWithoutProperties(_ref, ["color", "size"]);
|
|
46
|
+
return /* @__PURE__ */ React__default.createElement("svg", _extends({
|
|
47
|
+
ref,
|
|
48
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
49
|
+
width: size,
|
|
50
|
+
height: size,
|
|
51
|
+
viewBox: "0 0 24 24",
|
|
52
|
+
fill: "none",
|
|
53
|
+
stroke: color,
|
|
54
|
+
strokeWidth: "2",
|
|
55
|
+
strokeLinecap: "round",
|
|
56
|
+
strokeLinejoin: "round"
|
|
57
|
+
}, rest), /* @__PURE__ */ React__default.createElement("path", {
|
|
58
|
+
d: "M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z"
|
|
59
|
+
}), /* @__PURE__ */ React__default.createElement("polyline", {
|
|
60
|
+
points: "14 2 14 8 20 8"
|
|
61
|
+
}), /* @__PURE__ */ React__default.createElement("line", {
|
|
62
|
+
x1: "16",
|
|
63
|
+
y1: "13",
|
|
64
|
+
x2: "8",
|
|
65
|
+
y2: "13"
|
|
66
|
+
}), /* @__PURE__ */ React__default.createElement("line", {
|
|
67
|
+
x1: "16",
|
|
68
|
+
y1: "17",
|
|
69
|
+
x2: "8",
|
|
70
|
+
y2: "17"
|
|
71
|
+
}), /* @__PURE__ */ React__default.createElement("polyline", {
|
|
72
|
+
points: "10 9 9 9 8 9"
|
|
73
|
+
}));
|
|
74
|
+
});
|
|
75
|
+
FileText.propTypes = {
|
|
76
|
+
color: PropTypes.string,
|
|
77
|
+
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
78
|
+
};
|
|
79
|
+
FileText.displayName = "FileText";
|
|
80
|
+
export {
|
|
81
|
+
FileText as default
|
|
82
|
+
};
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
import React__default, { forwardRef } from "react";
|
|
2
|
+
import PropTypes from "../../../prop-types/index.js";
|
|
3
|
+
function _extends() {
|
|
4
|
+
_extends = Object.assign || function(target) {
|
|
5
|
+
for (var i = 1; i < arguments.length; i++) {
|
|
6
|
+
var source = arguments[i];
|
|
7
|
+
for (var key in source) {
|
|
8
|
+
if (Object.prototype.hasOwnProperty.call(source, key)) {
|
|
9
|
+
target[key] = source[key];
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
return target;
|
|
14
|
+
};
|
|
15
|
+
return _extends.apply(this, arguments);
|
|
16
|
+
}
|
|
17
|
+
function _objectWithoutProperties(source, excluded) {
|
|
18
|
+
if (source == null) return {};
|
|
19
|
+
var target = _objectWithoutPropertiesLoose(source, excluded);
|
|
20
|
+
var key, i;
|
|
21
|
+
if (Object.getOwnPropertySymbols) {
|
|
22
|
+
var sourceSymbolKeys = Object.getOwnPropertySymbols(source);
|
|
23
|
+
for (i = 0; i < sourceSymbolKeys.length; i++) {
|
|
24
|
+
key = sourceSymbolKeys[i];
|
|
25
|
+
if (excluded.indexOf(key) >= 0) continue;
|
|
26
|
+
if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue;
|
|
27
|
+
target[key] = source[key];
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
return target;
|
|
31
|
+
}
|
|
32
|
+
function _objectWithoutPropertiesLoose(source, excluded) {
|
|
33
|
+
if (source == null) return {};
|
|
34
|
+
var target = {};
|
|
35
|
+
var sourceKeys = Object.keys(source);
|
|
36
|
+
var key, i;
|
|
37
|
+
for (i = 0; i < sourceKeys.length; i++) {
|
|
38
|
+
key = sourceKeys[i];
|
|
39
|
+
if (excluded.indexOf(key) >= 0) continue;
|
|
40
|
+
target[key] = source[key];
|
|
41
|
+
}
|
|
42
|
+
return target;
|
|
43
|
+
}
|
|
44
|
+
var Frown = forwardRef(function(_ref, ref) {
|
|
45
|
+
var _ref$color = _ref.color, color = _ref$color === void 0 ? "currentColor" : _ref$color, _ref$size = _ref.size, size = _ref$size === void 0 ? 24 : _ref$size, rest = _objectWithoutProperties(_ref, ["color", "size"]);
|
|
46
|
+
return /* @__PURE__ */ React__default.createElement("svg", _extends({
|
|
47
|
+
ref,
|
|
48
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
49
|
+
width: size,
|
|
50
|
+
height: size,
|
|
51
|
+
viewBox: "0 0 24 24",
|
|
52
|
+
fill: "none",
|
|
53
|
+
stroke: color,
|
|
54
|
+
strokeWidth: "2",
|
|
55
|
+
strokeLinecap: "round",
|
|
56
|
+
strokeLinejoin: "round"
|
|
57
|
+
}, rest), /* @__PURE__ */ React__default.createElement("circle", {
|
|
58
|
+
cx: "12",
|
|
59
|
+
cy: "12",
|
|
60
|
+
r: "10"
|
|
61
|
+
}), /* @__PURE__ */ React__default.createElement("path", {
|
|
62
|
+
d: "M16 16s-1.5-2-4-2-4 2-4 2"
|
|
63
|
+
}), /* @__PURE__ */ React__default.createElement("line", {
|
|
64
|
+
x1: "9",
|
|
65
|
+
y1: "9",
|
|
66
|
+
x2: "9.01",
|
|
67
|
+
y2: "9"
|
|
68
|
+
}), /* @__PURE__ */ React__default.createElement("line", {
|
|
69
|
+
x1: "15",
|
|
70
|
+
y1: "9",
|
|
71
|
+
x2: "15.01",
|
|
72
|
+
y2: "9"
|
|
73
|
+
}));
|
|
74
|
+
});
|
|
75
|
+
Frown.propTypes = {
|
|
76
|
+
color: PropTypes.string,
|
|
77
|
+
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
78
|
+
};
|
|
79
|
+
Frown.displayName = "Frown";
|
|
80
|
+
export {
|
|
81
|
+
Frown as default
|
|
82
|
+
};
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
import React__default, { forwardRef } from "react";
|
|
2
|
+
import PropTypes from "../../../prop-types/index.js";
|
|
3
|
+
function _extends() {
|
|
4
|
+
_extends = Object.assign || function(target) {
|
|
5
|
+
for (var i = 1; i < arguments.length; i++) {
|
|
6
|
+
var source = arguments[i];
|
|
7
|
+
for (var key in source) {
|
|
8
|
+
if (Object.prototype.hasOwnProperty.call(source, key)) {
|
|
9
|
+
target[key] = source[key];
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
return target;
|
|
14
|
+
};
|
|
15
|
+
return _extends.apply(this, arguments);
|
|
16
|
+
}
|
|
17
|
+
function _objectWithoutProperties(source, excluded) {
|
|
18
|
+
if (source == null) return {};
|
|
19
|
+
var target = _objectWithoutPropertiesLoose(source, excluded);
|
|
20
|
+
var key, i;
|
|
21
|
+
if (Object.getOwnPropertySymbols) {
|
|
22
|
+
var sourceSymbolKeys = Object.getOwnPropertySymbols(source);
|
|
23
|
+
for (i = 0; i < sourceSymbolKeys.length; i++) {
|
|
24
|
+
key = sourceSymbolKeys[i];
|
|
25
|
+
if (excluded.indexOf(key) >= 0) continue;
|
|
26
|
+
if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue;
|
|
27
|
+
target[key] = source[key];
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
return target;
|
|
31
|
+
}
|
|
32
|
+
function _objectWithoutPropertiesLoose(source, excluded) {
|
|
33
|
+
if (source == null) return {};
|
|
34
|
+
var target = {};
|
|
35
|
+
var sourceKeys = Object.keys(source);
|
|
36
|
+
var key, i;
|
|
37
|
+
for (i = 0; i < sourceKeys.length; i++) {
|
|
38
|
+
key = sourceKeys[i];
|
|
39
|
+
if (excluded.indexOf(key) >= 0) continue;
|
|
40
|
+
target[key] = source[key];
|
|
41
|
+
}
|
|
42
|
+
return target;
|
|
43
|
+
}
|
|
44
|
+
var Heart = forwardRef(function(_ref, ref) {
|
|
45
|
+
var _ref$color = _ref.color, color = _ref$color === void 0 ? "currentColor" : _ref$color, _ref$size = _ref.size, size = _ref$size === void 0 ? 24 : _ref$size, rest = _objectWithoutProperties(_ref, ["color", "size"]);
|
|
46
|
+
return /* @__PURE__ */ React__default.createElement("svg", _extends({
|
|
47
|
+
ref,
|
|
48
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
49
|
+
width: size,
|
|
50
|
+
height: size,
|
|
51
|
+
viewBox: "0 0 24 24",
|
|
52
|
+
fill: "none",
|
|
53
|
+
stroke: color,
|
|
54
|
+
strokeWidth: "2",
|
|
55
|
+
strokeLinecap: "round",
|
|
56
|
+
strokeLinejoin: "round"
|
|
57
|
+
}, rest), /* @__PURE__ */ React__default.createElement("path", {
|
|
58
|
+
d: "M20.84 4.61a5.5 5.5 0 0 0-7.78 0L12 5.67l-1.06-1.06a5.5 5.5 0 0 0-7.78 7.78l1.06 1.06L12 21.23l7.78-7.78 1.06-1.06a5.5 5.5 0 0 0 0-7.78z"
|
|
59
|
+
}));
|
|
60
|
+
});
|
|
61
|
+
Heart.propTypes = {
|
|
62
|
+
color: PropTypes.string,
|
|
63
|
+
size: PropTypes.oneOfType([PropTypes.string, PropTypes.number])
|
|
64
|
+
};
|
|
65
|
+
Heart.displayName = "Heart";
|
|
66
|
+
export {
|
|
67
|
+
Heart as default
|
|
68
|
+
};
|