@elliemae/ds-icons 2.0.0-rc.10 → 2.0.0-rc.14
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/cjs/ChevronSmallDown.js +75 -8
- package/cjs/CloseXsmall.js +75 -8
- package/cjs/InfoCircleSmall.js +74 -8
- package/cjs/MenuPickeSmall.js +79 -0
- package/cjs/MenuPicker.js +75 -8
- package/cjs/TechSupports.js +79 -0
- package/cjs/index.js +4 -0
- package/esm/ChevronSmallDown.js +69 -8
- package/esm/CloseXsmall.js +69 -8
- package/esm/InfoCircleSmall.js +68 -8
- package/esm/MenuPickeSmall.js +71 -0
- package/esm/MenuPicker.js +69 -8
- package/esm/TechSupports.js +71 -0
- package/esm/index.js +2 -0
- package/package.json +10 -2
- package/types/ChevronSmallDown.d.ts +2 -2
- package/types/CloseXsmall.d.ts +2 -2
- package/types/InfoCircleSmall.d.ts +2 -2
- package/types/MenuPickeSmall.d.ts +3 -0
- package/types/MenuPicker.d.ts +2 -2
- package/types/TechSupports.d.ts +3 -0
- package/types/index.d.ts +2 -0
package/cjs/ChevronSmallDown.js
CHANGED
|
@@ -1,12 +1,79 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
require('core-js/modules/esnext.async-iterator.filter.js');
|
|
4
|
+
require('core-js/modules/esnext.iterator.constructor.js');
|
|
5
|
+
require('core-js/modules/esnext.iterator.filter.js');
|
|
6
|
+
require('core-js/modules/esnext.async-iterator.for-each.js');
|
|
7
|
+
require('core-js/modules/esnext.iterator.for-each.js');
|
|
8
|
+
var _jsx = require('@babel/runtime/helpers/jsx');
|
|
9
|
+
var _defineProperty = require('@babel/runtime/helpers/defineProperty');
|
|
10
|
+
var _objectWithoutProperties = require('@babel/runtime/helpers/objectWithoutProperties');
|
|
11
|
+
require('react');
|
|
12
|
+
var dsClassnames = require('@elliemae/ds-classnames');
|
|
13
|
+
var jsxRuntime = require('react/jsx-runtime');
|
|
4
14
|
|
|
5
|
-
|
|
6
|
-
var ChevronSmallDown = createIcon({
|
|
7
|
-
paths: ['M9.5 13a.503.503 0 0 1-.313-.109l-5-4a.5013.5013 0 0 1-.078-.703c.173-.214.488-.25.703-.078L9.5 11.86l4.688-3.75c.218-.172.531-.136.703.078.172.216.138.53-.078.703l-5 4A.501.501 0 0 1 9.5 13z'],
|
|
8
|
-
height: 20,
|
|
9
|
-
width: 20
|
|
10
|
-
});
|
|
15
|
+
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
|
11
16
|
|
|
12
|
-
|
|
17
|
+
var _jsx__default = /*#__PURE__*/_interopDefaultLegacy(_jsx);
|
|
18
|
+
var _defineProperty__default = /*#__PURE__*/_interopDefaultLegacy(_defineProperty);
|
|
19
|
+
var _objectWithoutProperties__default = /*#__PURE__*/_interopDefaultLegacy(_objectWithoutProperties);
|
|
20
|
+
|
|
21
|
+
var _path;
|
|
22
|
+
|
|
23
|
+
const _excluded = ["containerProps", "size", "color", "className", "style", "innerRef"];
|
|
24
|
+
|
|
25
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }
|
|
26
|
+
|
|
27
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty__default["default"](target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
|
|
28
|
+
|
|
29
|
+
function SvgIcon(props) {
|
|
30
|
+
const {
|
|
31
|
+
containerProps = {},
|
|
32
|
+
size,
|
|
33
|
+
color,
|
|
34
|
+
className = '',
|
|
35
|
+
style = {},
|
|
36
|
+
innerRef
|
|
37
|
+
} = props,
|
|
38
|
+
rest = _objectWithoutProperties__default["default"](props, _excluded);
|
|
39
|
+
|
|
40
|
+
const fill = !color && !props.fill ? '#1e79c2' : props.fill;
|
|
41
|
+
const width = !size && !props.width ? 16 : props.width;
|
|
42
|
+
const height = !size && !props.height ? 16 : props.height;
|
|
43
|
+
const {
|
|
44
|
+
cssClassName
|
|
45
|
+
} = dsClassnames.convertPropToCssClassName('icon', className, {
|
|
46
|
+
size,
|
|
47
|
+
color
|
|
48
|
+
});
|
|
49
|
+
return /*#__PURE__*/jsxRuntime.jsx("span", _objectSpread(_objectSpread(_objectSpread({
|
|
50
|
+
ref: innerRef,
|
|
51
|
+
className: cssClassName
|
|
52
|
+
}, rest), containerProps), {}, {
|
|
53
|
+
style: _objectSpread({
|
|
54
|
+
width,
|
|
55
|
+
height
|
|
56
|
+
}, style),
|
|
57
|
+
children: /*#__PURE__*/_jsx__default["default"]("svg", {
|
|
58
|
+
width: width && String(width),
|
|
59
|
+
height: height && String(height),
|
|
60
|
+
style: {
|
|
61
|
+
width,
|
|
62
|
+
height
|
|
63
|
+
},
|
|
64
|
+
fill: fill,
|
|
65
|
+
viewBox: "0 0 20 20"
|
|
66
|
+
}, void 0, /*#__PURE__*/_jsx__default["default"]("g", {
|
|
67
|
+
fillRule: "evenodd",
|
|
68
|
+
stroke: "none",
|
|
69
|
+
strokeWidth: "1"
|
|
70
|
+
}, void 0, /*#__PURE__*/_jsx__default["default"]("g", {
|
|
71
|
+
fill: fill,
|
|
72
|
+
fillRule: "nonzero"
|
|
73
|
+
}, void 0, _path || (_path = /*#__PURE__*/_jsx__default["default"]("path", {
|
|
74
|
+
d: "M9.5 13a.503.503 0 0 1-.313-.109l-5-4a.5013.5013 0 0 1-.078-.703c.173-.214.488-.25.703-.078L9.5 11.86l4.688-3.75c.218-.172.531-.136.703.078.172.216.138.53-.078.703l-5 4A.501.501 0 0 1 9.5 13z"
|
|
75
|
+
})))))
|
|
76
|
+
}));
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
module.exports = SvgIcon;
|
package/cjs/CloseXsmall.js
CHANGED
|
@@ -1,12 +1,79 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
require('core-js/modules/esnext.async-iterator.filter.js');
|
|
4
|
+
require('core-js/modules/esnext.iterator.constructor.js');
|
|
5
|
+
require('core-js/modules/esnext.iterator.filter.js');
|
|
6
|
+
require('core-js/modules/esnext.async-iterator.for-each.js');
|
|
7
|
+
require('core-js/modules/esnext.iterator.for-each.js');
|
|
8
|
+
var _jsx = require('@babel/runtime/helpers/jsx');
|
|
9
|
+
var _defineProperty = require('@babel/runtime/helpers/defineProperty');
|
|
10
|
+
var _objectWithoutProperties = require('@babel/runtime/helpers/objectWithoutProperties');
|
|
11
|
+
require('react');
|
|
12
|
+
var dsClassnames = require('@elliemae/ds-classnames');
|
|
13
|
+
var jsxRuntime = require('react/jsx-runtime');
|
|
4
14
|
|
|
5
|
-
|
|
6
|
-
var CloseXsmall = createIcon({
|
|
7
|
-
paths: ['M13.071 13.289l-2.828-2.828 2.828-2.828-.707-.707-2.828 2.828-2.828-2.828-.707.707 2.828 2.828-2.828 2.828.707.707 2.828-2.828 2.828 2.828z'],
|
|
8
|
-
height: 20,
|
|
9
|
-
width: 20
|
|
10
|
-
});
|
|
15
|
+
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
|
11
16
|
|
|
12
|
-
|
|
17
|
+
var _jsx__default = /*#__PURE__*/_interopDefaultLegacy(_jsx);
|
|
18
|
+
var _defineProperty__default = /*#__PURE__*/_interopDefaultLegacy(_defineProperty);
|
|
19
|
+
var _objectWithoutProperties__default = /*#__PURE__*/_interopDefaultLegacy(_objectWithoutProperties);
|
|
20
|
+
|
|
21
|
+
var _path;
|
|
22
|
+
|
|
23
|
+
const _excluded = ["containerProps", "size", "color", "className", "style", "innerRef"];
|
|
24
|
+
|
|
25
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }
|
|
26
|
+
|
|
27
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty__default["default"](target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
|
|
28
|
+
|
|
29
|
+
function SvgIcon(props) {
|
|
30
|
+
const {
|
|
31
|
+
containerProps = {},
|
|
32
|
+
size,
|
|
33
|
+
color,
|
|
34
|
+
className = '',
|
|
35
|
+
style = {},
|
|
36
|
+
innerRef
|
|
37
|
+
} = props,
|
|
38
|
+
rest = _objectWithoutProperties__default["default"](props, _excluded);
|
|
39
|
+
|
|
40
|
+
const fill = !color && !props.fill ? '#000' : props.fill;
|
|
41
|
+
const width = !size && !props.width ? 16 : props.width;
|
|
42
|
+
const height = !size && !props.height ? 16 : props.height;
|
|
43
|
+
const {
|
|
44
|
+
cssClassName
|
|
45
|
+
} = dsClassnames.convertPropToCssClassName('icon', className, {
|
|
46
|
+
size,
|
|
47
|
+
color
|
|
48
|
+
});
|
|
49
|
+
return /*#__PURE__*/jsxRuntime.jsx("span", _objectSpread(_objectSpread(_objectSpread({
|
|
50
|
+
ref: innerRef,
|
|
51
|
+
className: cssClassName
|
|
52
|
+
}, rest), containerProps), {}, {
|
|
53
|
+
style: _objectSpread({
|
|
54
|
+
width,
|
|
55
|
+
height
|
|
56
|
+
}, style),
|
|
57
|
+
children: /*#__PURE__*/_jsx__default["default"]("svg", {
|
|
58
|
+
width: width && String(width),
|
|
59
|
+
height: height && String(height),
|
|
60
|
+
style: {
|
|
61
|
+
width,
|
|
62
|
+
height
|
|
63
|
+
},
|
|
64
|
+
fill: fill,
|
|
65
|
+
viewBox: "0 0 20 20"
|
|
66
|
+
}, void 0, /*#__PURE__*/_jsx__default["default"]("g", {
|
|
67
|
+
fillRule: "evenodd",
|
|
68
|
+
stroke: "none",
|
|
69
|
+
strokeWidth: "1"
|
|
70
|
+
}, void 0, /*#__PURE__*/_jsx__default["default"]("g", {
|
|
71
|
+
fill: fill,
|
|
72
|
+
fillRule: "nonzero"
|
|
73
|
+
}, void 0, _path || (_path = /*#__PURE__*/_jsx__default["default"]("path", {
|
|
74
|
+
d: "M13.071 13.289l-2.828-2.828 2.828-2.828-.707-.707-2.828 2.828-2.828-2.828-.707.707 2.828 2.828-2.828 2.828.707.707 2.828-2.828 2.828 2.828z"
|
|
75
|
+
})))))
|
|
76
|
+
}));
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
module.exports = SvgIcon;
|
package/cjs/InfoCircleSmall.js
CHANGED
|
@@ -1,12 +1,78 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
require('core-js/modules/esnext.async-iterator.filter.js');
|
|
4
|
+
require('core-js/modules/esnext.iterator.constructor.js');
|
|
5
|
+
require('core-js/modules/esnext.iterator.filter.js');
|
|
6
|
+
require('core-js/modules/esnext.async-iterator.for-each.js');
|
|
7
|
+
require('core-js/modules/esnext.iterator.for-each.js');
|
|
8
|
+
var _jsx = require('@babel/runtime/helpers/jsx');
|
|
9
|
+
var _defineProperty = require('@babel/runtime/helpers/defineProperty');
|
|
10
|
+
var _objectWithoutProperties = require('@babel/runtime/helpers/objectWithoutProperties');
|
|
11
|
+
require('react');
|
|
12
|
+
var dsClassnames = require('@elliemae/ds-classnames');
|
|
13
|
+
var jsxRuntime = require('react/jsx-runtime');
|
|
4
14
|
|
|
5
|
-
|
|
6
|
-
var InfoCircleSmall = createIcon({
|
|
7
|
-
paths: ['M10.3 7.5h-2v1h1v4h-1v1h3v-1h-1zm-1-2h1v1h-1v-1zm.5-3a7.5 7.5 0 1 0 0 15 7.5 7.5 0 0 0 0-15zm0 14c-3.584 0-6.5-2.916-6.5-6.5s2.916-6.5 6.5-6.5 6.5 2.916 6.5 6.5-2.916 6.5-6.5 6.5z'],
|
|
8
|
-
height: 20,
|
|
9
|
-
width: 20
|
|
10
|
-
});
|
|
15
|
+
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
|
11
16
|
|
|
12
|
-
|
|
17
|
+
var _jsx__default = /*#__PURE__*/_interopDefaultLegacy(_jsx);
|
|
18
|
+
var _defineProperty__default = /*#__PURE__*/_interopDefaultLegacy(_defineProperty);
|
|
19
|
+
var _objectWithoutProperties__default = /*#__PURE__*/_interopDefaultLegacy(_objectWithoutProperties);
|
|
20
|
+
|
|
21
|
+
var _path;
|
|
22
|
+
|
|
23
|
+
const _excluded = ["containerProps", "size", "color", "className", "style", "innerRef"];
|
|
24
|
+
|
|
25
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }
|
|
26
|
+
|
|
27
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty__default["default"](target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
|
|
28
|
+
|
|
29
|
+
function SvgIcon(props) {
|
|
30
|
+
const {
|
|
31
|
+
containerProps = {},
|
|
32
|
+
size,
|
|
33
|
+
color,
|
|
34
|
+
className = '',
|
|
35
|
+
style = {},
|
|
36
|
+
innerRef
|
|
37
|
+
} = props,
|
|
38
|
+
rest = _objectWithoutProperties__default["default"](props, _excluded);
|
|
39
|
+
|
|
40
|
+
const fill = !color && !props.fill ? '#000' : props.fill;
|
|
41
|
+
const width = !size && !props.width ? 16 : props.width;
|
|
42
|
+
const height = !size && !props.height ? 16 : props.height;
|
|
43
|
+
const {
|
|
44
|
+
cssClassName
|
|
45
|
+
} = dsClassnames.convertPropToCssClassName('icon', className, {
|
|
46
|
+
size,
|
|
47
|
+
color
|
|
48
|
+
});
|
|
49
|
+
return /*#__PURE__*/jsxRuntime.jsx("span", _objectSpread(_objectSpread(_objectSpread({
|
|
50
|
+
ref: innerRef,
|
|
51
|
+
className: cssClassName
|
|
52
|
+
}, rest), containerProps), {}, {
|
|
53
|
+
style: _objectSpread({
|
|
54
|
+
width,
|
|
55
|
+
height
|
|
56
|
+
}, style),
|
|
57
|
+
children: /*#__PURE__*/_jsx__default["default"]("svg", {
|
|
58
|
+
width: width && String(width),
|
|
59
|
+
height: height && String(height),
|
|
60
|
+
style: {
|
|
61
|
+
width,
|
|
62
|
+
height
|
|
63
|
+
},
|
|
64
|
+
fill: fill,
|
|
65
|
+
viewBox: "0 0 20 20"
|
|
66
|
+
}, void 0, /*#__PURE__*/_jsx__default["default"]("g", {
|
|
67
|
+
stroke: "none",
|
|
68
|
+
strokeWidth: "1",
|
|
69
|
+
fillRule: "evenodd"
|
|
70
|
+
}, void 0, /*#__PURE__*/_jsx__default["default"]("g", {
|
|
71
|
+
fill: fill
|
|
72
|
+
}, void 0, _path || (_path = /*#__PURE__*/_jsx__default["default"]("path", {
|
|
73
|
+
d: "M10.3 7.5h-2v1h1v4h-1v1h3v-1h-1zm-1-2h1v1h-1v-1zm.5-3a7.5 7.5 0 1 0 0 15 7.5 7.5 0 0 0 0-15zm0 14c-3.584 0-6.5-2.916-6.5-6.5s2.916-6.5 6.5-6.5 6.5 2.916 6.5 6.5-2.916 6.5-6.5 6.5z"
|
|
74
|
+
})))))
|
|
75
|
+
}));
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
module.exports = SvgIcon;
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
require('core-js/modules/esnext.async-iterator.filter.js');
|
|
4
|
+
require('core-js/modules/esnext.iterator.constructor.js');
|
|
5
|
+
require('core-js/modules/esnext.iterator.filter.js');
|
|
6
|
+
require('core-js/modules/esnext.async-iterator.for-each.js');
|
|
7
|
+
require('core-js/modules/esnext.iterator.for-each.js');
|
|
8
|
+
var _jsx = require('@babel/runtime/helpers/jsx');
|
|
9
|
+
var _defineProperty = require('@babel/runtime/helpers/defineProperty');
|
|
10
|
+
var _objectWithoutProperties = require('@babel/runtime/helpers/objectWithoutProperties');
|
|
11
|
+
require('react');
|
|
12
|
+
var dsClassnames = require('@elliemae/ds-classnames');
|
|
13
|
+
var jsxRuntime = require('react/jsx-runtime');
|
|
14
|
+
|
|
15
|
+
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
|
16
|
+
|
|
17
|
+
var _jsx__default = /*#__PURE__*/_interopDefaultLegacy(_jsx);
|
|
18
|
+
var _defineProperty__default = /*#__PURE__*/_interopDefaultLegacy(_defineProperty);
|
|
19
|
+
var _objectWithoutProperties__default = /*#__PURE__*/_interopDefaultLegacy(_objectWithoutProperties);
|
|
20
|
+
|
|
21
|
+
var _path;
|
|
22
|
+
|
|
23
|
+
const _excluded = ["containerProps", "size", "color", "className", "style", "innerRef"];
|
|
24
|
+
|
|
25
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }
|
|
26
|
+
|
|
27
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty__default["default"](target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
|
|
28
|
+
|
|
29
|
+
function SvgIcon(props) {
|
|
30
|
+
const {
|
|
31
|
+
containerProps = {},
|
|
32
|
+
size,
|
|
33
|
+
color,
|
|
34
|
+
className = '',
|
|
35
|
+
style = {},
|
|
36
|
+
innerRef
|
|
37
|
+
} = props,
|
|
38
|
+
rest = _objectWithoutProperties__default["default"](props, _excluded);
|
|
39
|
+
|
|
40
|
+
const fill = color || props.fill || undefined;
|
|
41
|
+
const width = !size && !props.width ? 24 : props.width;
|
|
42
|
+
const height = !size && !props.height ? 24 : props.height;
|
|
43
|
+
const {
|
|
44
|
+
cssClassName
|
|
45
|
+
} = dsClassnames.convertPropToCssClassName('icon', className, {
|
|
46
|
+
size,
|
|
47
|
+
color
|
|
48
|
+
});
|
|
49
|
+
return /*#__PURE__*/jsxRuntime.jsx("span", _objectSpread(_objectSpread(_objectSpread({
|
|
50
|
+
ref: innerRef,
|
|
51
|
+
className: cssClassName
|
|
52
|
+
}, rest), containerProps), {}, {
|
|
53
|
+
style: _objectSpread({
|
|
54
|
+
width,
|
|
55
|
+
height
|
|
56
|
+
}, style),
|
|
57
|
+
children: /*#__PURE__*/_jsx__default["default"]("svg", {
|
|
58
|
+
width: width && String(width),
|
|
59
|
+
height: height && String(height),
|
|
60
|
+
style: {
|
|
61
|
+
width,
|
|
62
|
+
height
|
|
63
|
+
},
|
|
64
|
+
fill: fill,
|
|
65
|
+
viewBox: "0 0 24 24"
|
|
66
|
+
}, void 0, /*#__PURE__*/_jsx__default["default"]("g", {
|
|
67
|
+
stroke: "none",
|
|
68
|
+
strokeWidth: "1",
|
|
69
|
+
fillRule: "evenodd"
|
|
70
|
+
}, void 0, /*#__PURE__*/_jsx__default["default"]("g", {
|
|
71
|
+
fill: fill,
|
|
72
|
+
fillRule: "nonzero"
|
|
73
|
+
}, void 0, _path || (_path = /*#__PURE__*/_jsx__default["default"]("path", {
|
|
74
|
+
d: "M7.2 8H4.8c-.44 0-.8-.36-.8-.8V4.8c0-.44.36-.8.8-.8h2.4c.44 0 .8.36.8.8v2.4c0 .44-.36.8-.8.8zm6 0h-2.4c-.44 0-.8-.36-.8-.8V4.8c0-.44.36-.8.8-.8h2.4c.44 0 .8.36.8.8v2.4c0 .44-.36.8-.8.8zm6 0h-2.4c-.44 0-.8-.36-.8-.8V4.8c0-.44.36-.8.8-.8h2.4c.44 0 .8.36.8.8v2.4c0 .44-.36.8-.8.8zm-12 6H4.8c-.44 0-.8-.36-.8-.8v-2.4c0-.44.36-.8.8-.8h2.4c.44 0 .8.36.8.8v2.4c0 .44-.36.8-.8.8zm6 0h-2.4c-.44 0-.8-.36-.8-.8v-2.4c0-.44.36-.8.8-.8h2.4c.44 0 .8.36.8.8v2.4c0 .44-.36.8-.8.8zm6 0h-2.4c-.44 0-.8-.36-.8-.8v-2.4c0-.44.36-.8.8-.8h2.4c.44 0 .8.36.8.8v2.4c0 .44-.36.8-.8.8zm-12 6H4.8c-.44 0-.8-.36-.8-.8v-2.4c0-.44.36-.8.8-.8h2.4c.44 0 .8.36.8.8v2.4c0 .44-.36.8-.8.8zm6 0h-2.4c-.44 0-.8-.36-.8-.8v-2.4c0-.44.36-.8.8-.8h2.4c.44 0 .8.36.8.8v2.4c0 .44-.36.8-.8.8zm6 0h-2.4c-.44 0-.8-.36-.8-.8v-2.4c0-.44.36-.8.8-.8h2.4c.44 0 .8.36.8.8v2.4c0 .44-.36.8-.8.8z"
|
|
75
|
+
})))))
|
|
76
|
+
}));
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
module.exports = SvgIcon;
|
package/cjs/MenuPicker.js
CHANGED
|
@@ -1,12 +1,79 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
require('core-js/modules/esnext.async-iterator.filter.js');
|
|
4
|
+
require('core-js/modules/esnext.iterator.constructor.js');
|
|
5
|
+
require('core-js/modules/esnext.iterator.filter.js');
|
|
6
|
+
require('core-js/modules/esnext.async-iterator.for-each.js');
|
|
7
|
+
require('core-js/modules/esnext.iterator.for-each.js');
|
|
8
|
+
var _jsx = require('@babel/runtime/helpers/jsx');
|
|
9
|
+
var _defineProperty = require('@babel/runtime/helpers/defineProperty');
|
|
10
|
+
var _objectWithoutProperties = require('@babel/runtime/helpers/objectWithoutProperties');
|
|
11
|
+
require('react');
|
|
12
|
+
var dsClassnames = require('@elliemae/ds-classnames');
|
|
13
|
+
var jsxRuntime = require('react/jsx-runtime');
|
|
4
14
|
|
|
5
|
-
|
|
6
|
-
var MenuPicker = createIcon({
|
|
7
|
-
paths: ['M6 8H3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1zm8-1V4c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h3c.55 0 1-.45 1-1zm7 0V4c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h3c.55 0 1-.45 1-1zM7 14v-3c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h3c.55 0 1-.45 1-1zm7 0v-3c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h3c.55 0 1-.45 1-1zm7 0v-3c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h3c.55 0 1-.45 1-1zM7 21v-3c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h3c.55 0 1-.45 1-1zm7 0v-3c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h3c.55 0 1-.45 1-1zm7 0v-3c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h3c.55 0 1-.45 1-1z'],
|
|
8
|
-
height: 24,
|
|
9
|
-
width: 24
|
|
10
|
-
});
|
|
15
|
+
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
|
11
16
|
|
|
12
|
-
|
|
17
|
+
var _jsx__default = /*#__PURE__*/_interopDefaultLegacy(_jsx);
|
|
18
|
+
var _defineProperty__default = /*#__PURE__*/_interopDefaultLegacy(_defineProperty);
|
|
19
|
+
var _objectWithoutProperties__default = /*#__PURE__*/_interopDefaultLegacy(_objectWithoutProperties);
|
|
20
|
+
|
|
21
|
+
var _path;
|
|
22
|
+
|
|
23
|
+
const _excluded = ["containerProps", "size", "color", "className", "style", "innerRef"];
|
|
24
|
+
|
|
25
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }
|
|
26
|
+
|
|
27
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty__default["default"](target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
|
|
28
|
+
|
|
29
|
+
function SvgIcon(props) {
|
|
30
|
+
const {
|
|
31
|
+
containerProps = {},
|
|
32
|
+
size,
|
|
33
|
+
color,
|
|
34
|
+
className = '',
|
|
35
|
+
style = {},
|
|
36
|
+
innerRef
|
|
37
|
+
} = props,
|
|
38
|
+
rest = _objectWithoutProperties__default["default"](props, _excluded);
|
|
39
|
+
|
|
40
|
+
const fill = color || props.fill || undefined;
|
|
41
|
+
const width = !size && !props.width ? 24 : props.width;
|
|
42
|
+
const height = !size && !props.height ? 24 : props.height;
|
|
43
|
+
const {
|
|
44
|
+
cssClassName
|
|
45
|
+
} = dsClassnames.convertPropToCssClassName('icon', className, {
|
|
46
|
+
size,
|
|
47
|
+
color
|
|
48
|
+
});
|
|
49
|
+
return /*#__PURE__*/jsxRuntime.jsx("span", _objectSpread(_objectSpread(_objectSpread({
|
|
50
|
+
ref: innerRef,
|
|
51
|
+
className: cssClassName
|
|
52
|
+
}, rest), containerProps), {}, {
|
|
53
|
+
style: _objectSpread({
|
|
54
|
+
width,
|
|
55
|
+
height
|
|
56
|
+
}, style),
|
|
57
|
+
children: /*#__PURE__*/_jsx__default["default"]("svg", {
|
|
58
|
+
width: width && String(width),
|
|
59
|
+
height: height && String(height),
|
|
60
|
+
style: {
|
|
61
|
+
width,
|
|
62
|
+
height
|
|
63
|
+
},
|
|
64
|
+
fill: fill,
|
|
65
|
+
viewBox: "0 0 24 24"
|
|
66
|
+
}, void 0, /*#__PURE__*/_jsx__default["default"]("g", {
|
|
67
|
+
stroke: "none",
|
|
68
|
+
strokeWidth: "1",
|
|
69
|
+
fillRule: "evenodd"
|
|
70
|
+
}, void 0, /*#__PURE__*/_jsx__default["default"]("g", {
|
|
71
|
+
fill: fill,
|
|
72
|
+
fillRule: "nonzero"
|
|
73
|
+
}, void 0, _path || (_path = /*#__PURE__*/_jsx__default["default"]("path", {
|
|
74
|
+
d: "M5.8 7H2.2C1.54 7 1 6.46 1 5.8V2.2C1 1.54 1.54 1 2.2 1h3.6C6.46 1 7 1.54 7 2.2v3.6C7 6.46 6.46 7 5.8 7zm8 0h-3.6C9.54 7 9 6.46 9 5.8V2.2c0-.66.54-1.2 1.2-1.2h3.6c.66 0 1.2.54 1.2 1.2v3.6c0 .66-.54 1.2-1.2 1.2zm8 0h-3.6c-.66 0-1.2-.54-1.2-1.2V2.2c0-.66.54-1.2 1.2-1.2h3.6c.66 0 1.2.54 1.2 1.2v3.6c0 .66-.54 1.2-1.2 1.2zm-16 8H2.2c-.66 0-1.2-.54-1.2-1.2v-3.6C1 9.54 1.54 9 2.2 9h3.6c.66 0 1.2.54 1.2 1.2v3.6c0 .66-.54 1.2-1.2 1.2zm8 0h-3.6c-.66 0-1.2-.54-1.2-1.2v-3.6c0-.66.54-1.2 1.2-1.2h3.6c.66 0 1.2.54 1.2 1.2v3.6c0 .66-.54 1.2-1.2 1.2zm8 0h-3.6c-.66 0-1.2-.54-1.2-1.2v-3.6c0-.66.54-1.2 1.2-1.2h3.6c.66 0 1.2.54 1.2 1.2v3.6c0 .66-.54 1.2-1.2 1.2zm-16 8H2.2c-.66 0-1.2-.54-1.2-1.2v-3.6c0-.66.54-1.2 1.2-1.2h3.6c.66 0 1.2.54 1.2 1.2v3.6c0 .66-.54 1.2-1.2 1.2zm8 0h-3.6c-.66 0-1.2-.54-1.2-1.2v-3.6c0-.66.54-1.2 1.2-1.2h3.6c.66 0 1.2.54 1.2 1.2v3.6c0 .66-.54 1.2-1.2 1.2zm8 0h-3.6c-.66 0-1.2-.54-1.2-1.2v-3.6c0-.66.54-1.2 1.2-1.2h3.6c.66 0 1.2.54 1.2 1.2v3.6c0 .66-.54 1.2-1.2 1.2z"
|
|
75
|
+
})))))
|
|
76
|
+
}));
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
module.exports = SvgIcon;
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
require('core-js/modules/esnext.async-iterator.filter.js');
|
|
4
|
+
require('core-js/modules/esnext.iterator.constructor.js');
|
|
5
|
+
require('core-js/modules/esnext.iterator.filter.js');
|
|
6
|
+
require('core-js/modules/esnext.async-iterator.for-each.js');
|
|
7
|
+
require('core-js/modules/esnext.iterator.for-each.js');
|
|
8
|
+
var _jsx = require('@babel/runtime/helpers/jsx');
|
|
9
|
+
var _defineProperty = require('@babel/runtime/helpers/defineProperty');
|
|
10
|
+
var _objectWithoutProperties = require('@babel/runtime/helpers/objectWithoutProperties');
|
|
11
|
+
require('react');
|
|
12
|
+
var dsClassnames = require('@elliemae/ds-classnames');
|
|
13
|
+
var jsxRuntime = require('react/jsx-runtime');
|
|
14
|
+
|
|
15
|
+
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
|
16
|
+
|
|
17
|
+
var _jsx__default = /*#__PURE__*/_interopDefaultLegacy(_jsx);
|
|
18
|
+
var _defineProperty__default = /*#__PURE__*/_interopDefaultLegacy(_defineProperty);
|
|
19
|
+
var _objectWithoutProperties__default = /*#__PURE__*/_interopDefaultLegacy(_objectWithoutProperties);
|
|
20
|
+
|
|
21
|
+
var _path;
|
|
22
|
+
|
|
23
|
+
const _excluded = ["containerProps", "size", "color", "className", "style", "innerRef"];
|
|
24
|
+
|
|
25
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }
|
|
26
|
+
|
|
27
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty__default["default"](target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
|
|
28
|
+
|
|
29
|
+
function SvgIcon(props) {
|
|
30
|
+
const {
|
|
31
|
+
containerProps = {},
|
|
32
|
+
size,
|
|
33
|
+
color,
|
|
34
|
+
className = '',
|
|
35
|
+
style = {},
|
|
36
|
+
innerRef
|
|
37
|
+
} = props,
|
|
38
|
+
rest = _objectWithoutProperties__default["default"](props, _excluded);
|
|
39
|
+
|
|
40
|
+
const fill = color || props.fill || undefined;
|
|
41
|
+
const width = !size && !props.width ? 24 : props.width;
|
|
42
|
+
const height = !size && !props.height ? 24 : props.height;
|
|
43
|
+
const {
|
|
44
|
+
cssClassName
|
|
45
|
+
} = dsClassnames.convertPropToCssClassName('icon', className, {
|
|
46
|
+
size,
|
|
47
|
+
color
|
|
48
|
+
});
|
|
49
|
+
return /*#__PURE__*/jsxRuntime.jsx("span", _objectSpread(_objectSpread(_objectSpread({
|
|
50
|
+
ref: innerRef,
|
|
51
|
+
className: cssClassName
|
|
52
|
+
}, rest), containerProps), {}, {
|
|
53
|
+
style: _objectSpread({
|
|
54
|
+
width,
|
|
55
|
+
height
|
|
56
|
+
}, style),
|
|
57
|
+
children: /*#__PURE__*/_jsx__default["default"]("svg", {
|
|
58
|
+
width: width && String(width),
|
|
59
|
+
height: height && String(height),
|
|
60
|
+
style: {
|
|
61
|
+
width,
|
|
62
|
+
height
|
|
63
|
+
},
|
|
64
|
+
fill: fill,
|
|
65
|
+
viewBox: "0 0 24 24"
|
|
66
|
+
}, void 0, /*#__PURE__*/_jsx__default["default"]("g", {
|
|
67
|
+
stroke: "none",
|
|
68
|
+
strokeWidth: "1",
|
|
69
|
+
fillRule: "evenodd"
|
|
70
|
+
}, void 0, /*#__PURE__*/_jsx__default["default"]("g", {
|
|
71
|
+
fill: fill,
|
|
72
|
+
fillRule: "nonzero"
|
|
73
|
+
}, void 0, _path || (_path = /*#__PURE__*/_jsx__default["default"]("path", {
|
|
74
|
+
d: "M7.98 3.166c2.756 0 5 2.242 5 5 0 .704-.149 1.391-.44 2.042l-.283.629.488.487 7.927 7.927a1.123 1.123 0 0 1-.793 1.914c-.3 0-.581-.116-.793-.328l-7.92-7.92-.49-.49-.631.287c-.658.3-1.353.452-2.066.452-2.757 0-5-2.243-5-5 0-.47.068-.938.2-1.387l3.093 3.094.293.293h3.414V6.75l-.293-.293-3.094-3.094c.45-.13.917-.198 1.387-.198m0-1c-1.144 0-2.209.325-3.118.88l4.118 4.12v2h-2l-4.118-4.12a5.962 5.962 0 0 0-.882 3.12 6 6 0 0 0 6 6c.886 0 1.723-.197 2.48-.542l7.92 7.92c.414.414.957.621 1.5.621s1.085-.207 1.5-.62a2.121 2.121 0 0 0 0-3l-7.927-7.928a5.97 5.97 0 0 0 .527-2.451 6 6 0 0 0-6-6z"
|
|
75
|
+
})))))
|
|
76
|
+
}));
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
module.exports = SvgIcon;
|
package/cjs/index.js
CHANGED
|
@@ -171,6 +171,7 @@ var Menu = require('./Menu.js');
|
|
|
171
171
|
var MenuCollapse = require('./MenuCollapse.js');
|
|
172
172
|
var MenuExpand = require('./MenuExpand.js');
|
|
173
173
|
var MenuPicker = require('./MenuPicker.js');
|
|
174
|
+
var MenuPickeSmall = require('./MenuPickeSmall.js');
|
|
174
175
|
var Messages = require('./Messages.js');
|
|
175
176
|
var MessageSolid = require('./MessageSolid.js');
|
|
176
177
|
var MessagesUnread = require('./MessagesUnread.js');
|
|
@@ -252,6 +253,7 @@ var StatusCheck = require('./StatusCheck.js');
|
|
|
252
253
|
var Subtract = require('./Subtract.js');
|
|
253
254
|
var Summary = require('./Summary.js');
|
|
254
255
|
var Tasks = require('./Tasks.js');
|
|
256
|
+
var TechSupports = require('./TechSupports.js');
|
|
255
257
|
var TextFormat = require('./TextFormat.js');
|
|
256
258
|
var TextFormatAlt = require('./TextFormatAlt.js');
|
|
257
259
|
var TextStyleBold = require('./TextStyleBold.js');
|
|
@@ -554,6 +556,7 @@ exports.Menu = Menu;
|
|
|
554
556
|
exports.MenuCollapse = MenuCollapse;
|
|
555
557
|
exports.MenuExpand = MenuExpand;
|
|
556
558
|
exports.MenuPicker = MenuPicker;
|
|
559
|
+
exports.MenuPickerSmall = MenuPickeSmall;
|
|
557
560
|
exports.Messages = Messages;
|
|
558
561
|
exports.MessageSolid = MessageSolid;
|
|
559
562
|
exports.MessagesUnread = MessagesUnread;
|
|
@@ -635,6 +638,7 @@ exports.StatusCheck = StatusCheck;
|
|
|
635
638
|
exports.Subtract = Subtract;
|
|
636
639
|
exports.Summary = Summary;
|
|
637
640
|
exports.Tasks = Tasks;
|
|
641
|
+
exports.TechSupports = TechSupports;
|
|
638
642
|
exports.TextFormat = TextFormat;
|
|
639
643
|
exports.TextFormatAlt = TextFormatAlt;
|
|
640
644
|
exports.TextStyleBold = TextStyleBold;
|
package/esm/ChevronSmallDown.js
CHANGED
|
@@ -1,10 +1,71 @@
|
|
|
1
|
-
import
|
|
1
|
+
import 'core-js/modules/esnext.async-iterator.filter.js';
|
|
2
|
+
import 'core-js/modules/esnext.iterator.constructor.js';
|
|
3
|
+
import 'core-js/modules/esnext.iterator.filter.js';
|
|
4
|
+
import 'core-js/modules/esnext.async-iterator.for-each.js';
|
|
5
|
+
import 'core-js/modules/esnext.iterator.for-each.js';
|
|
6
|
+
import _jsx from '@babel/runtime/helpers/esm/jsx';
|
|
7
|
+
import _defineProperty from '@babel/runtime/helpers/esm/defineProperty';
|
|
8
|
+
import _objectWithoutProperties from '@babel/runtime/helpers/esm/objectWithoutProperties';
|
|
9
|
+
import 'react';
|
|
10
|
+
import { convertPropToCssClassName } from '@elliemae/ds-classnames';
|
|
11
|
+
import { jsx } from 'react/jsx-runtime';
|
|
2
12
|
|
|
3
|
-
|
|
4
|
-
var ChevronSmallDown = createIcon({
|
|
5
|
-
paths: ['M9.5 13a.503.503 0 0 1-.313-.109l-5-4a.5013.5013 0 0 1-.078-.703c.173-.214.488-.25.703-.078L9.5 11.86l4.688-3.75c.218-.172.531-.136.703.078.172.216.138.53-.078.703l-5 4A.501.501 0 0 1 9.5 13z'],
|
|
6
|
-
height: 20,
|
|
7
|
-
width: 20
|
|
8
|
-
});
|
|
13
|
+
var _path;
|
|
9
14
|
|
|
10
|
-
|
|
15
|
+
const _excluded = ["containerProps", "size", "color", "className", "style", "innerRef"];
|
|
16
|
+
|
|
17
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }
|
|
18
|
+
|
|
19
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
|
|
20
|
+
|
|
21
|
+
function SvgIcon(props) {
|
|
22
|
+
const {
|
|
23
|
+
containerProps = {},
|
|
24
|
+
size,
|
|
25
|
+
color,
|
|
26
|
+
className = '',
|
|
27
|
+
style = {},
|
|
28
|
+
innerRef
|
|
29
|
+
} = props,
|
|
30
|
+
rest = _objectWithoutProperties(props, _excluded);
|
|
31
|
+
|
|
32
|
+
const fill = !color && !props.fill ? '#1e79c2' : props.fill;
|
|
33
|
+
const width = !size && !props.width ? 16 : props.width;
|
|
34
|
+
const height = !size && !props.height ? 16 : props.height;
|
|
35
|
+
const {
|
|
36
|
+
cssClassName
|
|
37
|
+
} = convertPropToCssClassName('icon', className, {
|
|
38
|
+
size,
|
|
39
|
+
color
|
|
40
|
+
});
|
|
41
|
+
return /*#__PURE__*/jsx("span", _objectSpread(_objectSpread(_objectSpread({
|
|
42
|
+
ref: innerRef,
|
|
43
|
+
className: cssClassName
|
|
44
|
+
}, rest), containerProps), {}, {
|
|
45
|
+
style: _objectSpread({
|
|
46
|
+
width,
|
|
47
|
+
height
|
|
48
|
+
}, style),
|
|
49
|
+
children: /*#__PURE__*/_jsx("svg", {
|
|
50
|
+
width: width && String(width),
|
|
51
|
+
height: height && String(height),
|
|
52
|
+
style: {
|
|
53
|
+
width,
|
|
54
|
+
height
|
|
55
|
+
},
|
|
56
|
+
fill: fill,
|
|
57
|
+
viewBox: "0 0 20 20"
|
|
58
|
+
}, void 0, /*#__PURE__*/_jsx("g", {
|
|
59
|
+
fillRule: "evenodd",
|
|
60
|
+
stroke: "none",
|
|
61
|
+
strokeWidth: "1"
|
|
62
|
+
}, void 0, /*#__PURE__*/_jsx("g", {
|
|
63
|
+
fill: fill,
|
|
64
|
+
fillRule: "nonzero"
|
|
65
|
+
}, void 0, _path || (_path = /*#__PURE__*/_jsx("path", {
|
|
66
|
+
d: "M9.5 13a.503.503 0 0 1-.313-.109l-5-4a.5013.5013 0 0 1-.078-.703c.173-.214.488-.25.703-.078L9.5 11.86l4.688-3.75c.218-.172.531-.136.703.078.172.216.138.53-.078.703l-5 4A.501.501 0 0 1 9.5 13z"
|
|
67
|
+
})))))
|
|
68
|
+
}));
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
export { SvgIcon as default };
|
package/esm/CloseXsmall.js
CHANGED
|
@@ -1,10 +1,71 @@
|
|
|
1
|
-
import
|
|
1
|
+
import 'core-js/modules/esnext.async-iterator.filter.js';
|
|
2
|
+
import 'core-js/modules/esnext.iterator.constructor.js';
|
|
3
|
+
import 'core-js/modules/esnext.iterator.filter.js';
|
|
4
|
+
import 'core-js/modules/esnext.async-iterator.for-each.js';
|
|
5
|
+
import 'core-js/modules/esnext.iterator.for-each.js';
|
|
6
|
+
import _jsx from '@babel/runtime/helpers/esm/jsx';
|
|
7
|
+
import _defineProperty from '@babel/runtime/helpers/esm/defineProperty';
|
|
8
|
+
import _objectWithoutProperties from '@babel/runtime/helpers/esm/objectWithoutProperties';
|
|
9
|
+
import 'react';
|
|
10
|
+
import { convertPropToCssClassName } from '@elliemae/ds-classnames';
|
|
11
|
+
import { jsx } from 'react/jsx-runtime';
|
|
2
12
|
|
|
3
|
-
|
|
4
|
-
var CloseXsmall = createIcon({
|
|
5
|
-
paths: ['M13.071 13.289l-2.828-2.828 2.828-2.828-.707-.707-2.828 2.828-2.828-2.828-.707.707 2.828 2.828-2.828 2.828.707.707 2.828-2.828 2.828 2.828z'],
|
|
6
|
-
height: 20,
|
|
7
|
-
width: 20
|
|
8
|
-
});
|
|
13
|
+
var _path;
|
|
9
14
|
|
|
10
|
-
|
|
15
|
+
const _excluded = ["containerProps", "size", "color", "className", "style", "innerRef"];
|
|
16
|
+
|
|
17
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }
|
|
18
|
+
|
|
19
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
|
|
20
|
+
|
|
21
|
+
function SvgIcon(props) {
|
|
22
|
+
const {
|
|
23
|
+
containerProps = {},
|
|
24
|
+
size,
|
|
25
|
+
color,
|
|
26
|
+
className = '',
|
|
27
|
+
style = {},
|
|
28
|
+
innerRef
|
|
29
|
+
} = props,
|
|
30
|
+
rest = _objectWithoutProperties(props, _excluded);
|
|
31
|
+
|
|
32
|
+
const fill = !color && !props.fill ? '#000' : props.fill;
|
|
33
|
+
const width = !size && !props.width ? 16 : props.width;
|
|
34
|
+
const height = !size && !props.height ? 16 : props.height;
|
|
35
|
+
const {
|
|
36
|
+
cssClassName
|
|
37
|
+
} = convertPropToCssClassName('icon', className, {
|
|
38
|
+
size,
|
|
39
|
+
color
|
|
40
|
+
});
|
|
41
|
+
return /*#__PURE__*/jsx("span", _objectSpread(_objectSpread(_objectSpread({
|
|
42
|
+
ref: innerRef,
|
|
43
|
+
className: cssClassName
|
|
44
|
+
}, rest), containerProps), {}, {
|
|
45
|
+
style: _objectSpread({
|
|
46
|
+
width,
|
|
47
|
+
height
|
|
48
|
+
}, style),
|
|
49
|
+
children: /*#__PURE__*/_jsx("svg", {
|
|
50
|
+
width: width && String(width),
|
|
51
|
+
height: height && String(height),
|
|
52
|
+
style: {
|
|
53
|
+
width,
|
|
54
|
+
height
|
|
55
|
+
},
|
|
56
|
+
fill: fill,
|
|
57
|
+
viewBox: "0 0 20 20"
|
|
58
|
+
}, void 0, /*#__PURE__*/_jsx("g", {
|
|
59
|
+
fillRule: "evenodd",
|
|
60
|
+
stroke: "none",
|
|
61
|
+
strokeWidth: "1"
|
|
62
|
+
}, void 0, /*#__PURE__*/_jsx("g", {
|
|
63
|
+
fill: fill,
|
|
64
|
+
fillRule: "nonzero"
|
|
65
|
+
}, void 0, _path || (_path = /*#__PURE__*/_jsx("path", {
|
|
66
|
+
d: "M13.071 13.289l-2.828-2.828 2.828-2.828-.707-.707-2.828 2.828-2.828-2.828-.707.707 2.828 2.828-2.828 2.828.707.707 2.828-2.828 2.828 2.828z"
|
|
67
|
+
})))))
|
|
68
|
+
}));
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
export { SvgIcon as default };
|
package/esm/InfoCircleSmall.js
CHANGED
|
@@ -1,10 +1,70 @@
|
|
|
1
|
-
import
|
|
1
|
+
import 'core-js/modules/esnext.async-iterator.filter.js';
|
|
2
|
+
import 'core-js/modules/esnext.iterator.constructor.js';
|
|
3
|
+
import 'core-js/modules/esnext.iterator.filter.js';
|
|
4
|
+
import 'core-js/modules/esnext.async-iterator.for-each.js';
|
|
5
|
+
import 'core-js/modules/esnext.iterator.for-each.js';
|
|
6
|
+
import _jsx from '@babel/runtime/helpers/esm/jsx';
|
|
7
|
+
import _defineProperty from '@babel/runtime/helpers/esm/defineProperty';
|
|
8
|
+
import _objectWithoutProperties from '@babel/runtime/helpers/esm/objectWithoutProperties';
|
|
9
|
+
import 'react';
|
|
10
|
+
import { convertPropToCssClassName } from '@elliemae/ds-classnames';
|
|
11
|
+
import { jsx } from 'react/jsx-runtime';
|
|
2
12
|
|
|
3
|
-
|
|
4
|
-
var InfoCircleSmall = createIcon({
|
|
5
|
-
paths: ['M10.3 7.5h-2v1h1v4h-1v1h3v-1h-1zm-1-2h1v1h-1v-1zm.5-3a7.5 7.5 0 1 0 0 15 7.5 7.5 0 0 0 0-15zm0 14c-3.584 0-6.5-2.916-6.5-6.5s2.916-6.5 6.5-6.5 6.5 2.916 6.5 6.5-2.916 6.5-6.5 6.5z'],
|
|
6
|
-
height: 20,
|
|
7
|
-
width: 20
|
|
8
|
-
});
|
|
13
|
+
var _path;
|
|
9
14
|
|
|
10
|
-
|
|
15
|
+
const _excluded = ["containerProps", "size", "color", "className", "style", "innerRef"];
|
|
16
|
+
|
|
17
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }
|
|
18
|
+
|
|
19
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
|
|
20
|
+
|
|
21
|
+
function SvgIcon(props) {
|
|
22
|
+
const {
|
|
23
|
+
containerProps = {},
|
|
24
|
+
size,
|
|
25
|
+
color,
|
|
26
|
+
className = '',
|
|
27
|
+
style = {},
|
|
28
|
+
innerRef
|
|
29
|
+
} = props,
|
|
30
|
+
rest = _objectWithoutProperties(props, _excluded);
|
|
31
|
+
|
|
32
|
+
const fill = !color && !props.fill ? '#000' : props.fill;
|
|
33
|
+
const width = !size && !props.width ? 16 : props.width;
|
|
34
|
+
const height = !size && !props.height ? 16 : props.height;
|
|
35
|
+
const {
|
|
36
|
+
cssClassName
|
|
37
|
+
} = convertPropToCssClassName('icon', className, {
|
|
38
|
+
size,
|
|
39
|
+
color
|
|
40
|
+
});
|
|
41
|
+
return /*#__PURE__*/jsx("span", _objectSpread(_objectSpread(_objectSpread({
|
|
42
|
+
ref: innerRef,
|
|
43
|
+
className: cssClassName
|
|
44
|
+
}, rest), containerProps), {}, {
|
|
45
|
+
style: _objectSpread({
|
|
46
|
+
width,
|
|
47
|
+
height
|
|
48
|
+
}, style),
|
|
49
|
+
children: /*#__PURE__*/_jsx("svg", {
|
|
50
|
+
width: width && String(width),
|
|
51
|
+
height: height && String(height),
|
|
52
|
+
style: {
|
|
53
|
+
width,
|
|
54
|
+
height
|
|
55
|
+
},
|
|
56
|
+
fill: fill,
|
|
57
|
+
viewBox: "0 0 20 20"
|
|
58
|
+
}, void 0, /*#__PURE__*/_jsx("g", {
|
|
59
|
+
stroke: "none",
|
|
60
|
+
strokeWidth: "1",
|
|
61
|
+
fillRule: "evenodd"
|
|
62
|
+
}, void 0, /*#__PURE__*/_jsx("g", {
|
|
63
|
+
fill: fill
|
|
64
|
+
}, void 0, _path || (_path = /*#__PURE__*/_jsx("path", {
|
|
65
|
+
d: "M10.3 7.5h-2v1h1v4h-1v1h3v-1h-1zm-1-2h1v1h-1v-1zm.5-3a7.5 7.5 0 1 0 0 15 7.5 7.5 0 0 0 0-15zm0 14c-3.584 0-6.5-2.916-6.5-6.5s2.916-6.5 6.5-6.5 6.5 2.916 6.5 6.5-2.916 6.5-6.5 6.5z"
|
|
66
|
+
})))))
|
|
67
|
+
}));
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
export { SvgIcon as default };
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
import 'core-js/modules/esnext.async-iterator.filter.js';
|
|
2
|
+
import 'core-js/modules/esnext.iterator.constructor.js';
|
|
3
|
+
import 'core-js/modules/esnext.iterator.filter.js';
|
|
4
|
+
import 'core-js/modules/esnext.async-iterator.for-each.js';
|
|
5
|
+
import 'core-js/modules/esnext.iterator.for-each.js';
|
|
6
|
+
import _jsx from '@babel/runtime/helpers/esm/jsx';
|
|
7
|
+
import _defineProperty from '@babel/runtime/helpers/esm/defineProperty';
|
|
8
|
+
import _objectWithoutProperties from '@babel/runtime/helpers/esm/objectWithoutProperties';
|
|
9
|
+
import 'react';
|
|
10
|
+
import { convertPropToCssClassName } from '@elliemae/ds-classnames';
|
|
11
|
+
import { jsx } from 'react/jsx-runtime';
|
|
12
|
+
|
|
13
|
+
var _path;
|
|
14
|
+
|
|
15
|
+
const _excluded = ["containerProps", "size", "color", "className", "style", "innerRef"];
|
|
16
|
+
|
|
17
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }
|
|
18
|
+
|
|
19
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
|
|
20
|
+
|
|
21
|
+
function SvgIcon(props) {
|
|
22
|
+
const {
|
|
23
|
+
containerProps = {},
|
|
24
|
+
size,
|
|
25
|
+
color,
|
|
26
|
+
className = '',
|
|
27
|
+
style = {},
|
|
28
|
+
innerRef
|
|
29
|
+
} = props,
|
|
30
|
+
rest = _objectWithoutProperties(props, _excluded);
|
|
31
|
+
|
|
32
|
+
const fill = color || props.fill || undefined;
|
|
33
|
+
const width = !size && !props.width ? 24 : props.width;
|
|
34
|
+
const height = !size && !props.height ? 24 : props.height;
|
|
35
|
+
const {
|
|
36
|
+
cssClassName
|
|
37
|
+
} = convertPropToCssClassName('icon', className, {
|
|
38
|
+
size,
|
|
39
|
+
color
|
|
40
|
+
});
|
|
41
|
+
return /*#__PURE__*/jsx("span", _objectSpread(_objectSpread(_objectSpread({
|
|
42
|
+
ref: innerRef,
|
|
43
|
+
className: cssClassName
|
|
44
|
+
}, rest), containerProps), {}, {
|
|
45
|
+
style: _objectSpread({
|
|
46
|
+
width,
|
|
47
|
+
height
|
|
48
|
+
}, style),
|
|
49
|
+
children: /*#__PURE__*/_jsx("svg", {
|
|
50
|
+
width: width && String(width),
|
|
51
|
+
height: height && String(height),
|
|
52
|
+
style: {
|
|
53
|
+
width,
|
|
54
|
+
height
|
|
55
|
+
},
|
|
56
|
+
fill: fill,
|
|
57
|
+
viewBox: "0 0 24 24"
|
|
58
|
+
}, void 0, /*#__PURE__*/_jsx("g", {
|
|
59
|
+
stroke: "none",
|
|
60
|
+
strokeWidth: "1",
|
|
61
|
+
fillRule: "evenodd"
|
|
62
|
+
}, void 0, /*#__PURE__*/_jsx("g", {
|
|
63
|
+
fill: fill,
|
|
64
|
+
fillRule: "nonzero"
|
|
65
|
+
}, void 0, _path || (_path = /*#__PURE__*/_jsx("path", {
|
|
66
|
+
d: "M7.2 8H4.8c-.44 0-.8-.36-.8-.8V4.8c0-.44.36-.8.8-.8h2.4c.44 0 .8.36.8.8v2.4c0 .44-.36.8-.8.8zm6 0h-2.4c-.44 0-.8-.36-.8-.8V4.8c0-.44.36-.8.8-.8h2.4c.44 0 .8.36.8.8v2.4c0 .44-.36.8-.8.8zm6 0h-2.4c-.44 0-.8-.36-.8-.8V4.8c0-.44.36-.8.8-.8h2.4c.44 0 .8.36.8.8v2.4c0 .44-.36.8-.8.8zm-12 6H4.8c-.44 0-.8-.36-.8-.8v-2.4c0-.44.36-.8.8-.8h2.4c.44 0 .8.36.8.8v2.4c0 .44-.36.8-.8.8zm6 0h-2.4c-.44 0-.8-.36-.8-.8v-2.4c0-.44.36-.8.8-.8h2.4c.44 0 .8.36.8.8v2.4c0 .44-.36.8-.8.8zm6 0h-2.4c-.44 0-.8-.36-.8-.8v-2.4c0-.44.36-.8.8-.8h2.4c.44 0 .8.36.8.8v2.4c0 .44-.36.8-.8.8zm-12 6H4.8c-.44 0-.8-.36-.8-.8v-2.4c0-.44.36-.8.8-.8h2.4c.44 0 .8.36.8.8v2.4c0 .44-.36.8-.8.8zm6 0h-2.4c-.44 0-.8-.36-.8-.8v-2.4c0-.44.36-.8.8-.8h2.4c.44 0 .8.36.8.8v2.4c0 .44-.36.8-.8.8zm6 0h-2.4c-.44 0-.8-.36-.8-.8v-2.4c0-.44.36-.8.8-.8h2.4c.44 0 .8.36.8.8v2.4c0 .44-.36.8-.8.8z"
|
|
67
|
+
})))))
|
|
68
|
+
}));
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
export { SvgIcon as default };
|
package/esm/MenuPicker.js
CHANGED
|
@@ -1,10 +1,71 @@
|
|
|
1
|
-
import
|
|
1
|
+
import 'core-js/modules/esnext.async-iterator.filter.js';
|
|
2
|
+
import 'core-js/modules/esnext.iterator.constructor.js';
|
|
3
|
+
import 'core-js/modules/esnext.iterator.filter.js';
|
|
4
|
+
import 'core-js/modules/esnext.async-iterator.for-each.js';
|
|
5
|
+
import 'core-js/modules/esnext.iterator.for-each.js';
|
|
6
|
+
import _jsx from '@babel/runtime/helpers/esm/jsx';
|
|
7
|
+
import _defineProperty from '@babel/runtime/helpers/esm/defineProperty';
|
|
8
|
+
import _objectWithoutProperties from '@babel/runtime/helpers/esm/objectWithoutProperties';
|
|
9
|
+
import 'react';
|
|
10
|
+
import { convertPropToCssClassName } from '@elliemae/ds-classnames';
|
|
11
|
+
import { jsx } from 'react/jsx-runtime';
|
|
2
12
|
|
|
3
|
-
|
|
4
|
-
var MenuPicker = createIcon({
|
|
5
|
-
paths: ['M6 8H3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1zm8-1V4c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h3c.55 0 1-.45 1-1zm7 0V4c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h3c.55 0 1-.45 1-1zM7 14v-3c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h3c.55 0 1-.45 1-1zm7 0v-3c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h3c.55 0 1-.45 1-1zm7 0v-3c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h3c.55 0 1-.45 1-1zM7 21v-3c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h3c.55 0 1-.45 1-1zm7 0v-3c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h3c.55 0 1-.45 1-1zm7 0v-3c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h3c.55 0 1-.45 1-1z'],
|
|
6
|
-
height: 24,
|
|
7
|
-
width: 24
|
|
8
|
-
});
|
|
13
|
+
var _path;
|
|
9
14
|
|
|
10
|
-
|
|
15
|
+
const _excluded = ["containerProps", "size", "color", "className", "style", "innerRef"];
|
|
16
|
+
|
|
17
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }
|
|
18
|
+
|
|
19
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
|
|
20
|
+
|
|
21
|
+
function SvgIcon(props) {
|
|
22
|
+
const {
|
|
23
|
+
containerProps = {},
|
|
24
|
+
size,
|
|
25
|
+
color,
|
|
26
|
+
className = '',
|
|
27
|
+
style = {},
|
|
28
|
+
innerRef
|
|
29
|
+
} = props,
|
|
30
|
+
rest = _objectWithoutProperties(props, _excluded);
|
|
31
|
+
|
|
32
|
+
const fill = color || props.fill || undefined;
|
|
33
|
+
const width = !size && !props.width ? 24 : props.width;
|
|
34
|
+
const height = !size && !props.height ? 24 : props.height;
|
|
35
|
+
const {
|
|
36
|
+
cssClassName
|
|
37
|
+
} = convertPropToCssClassName('icon', className, {
|
|
38
|
+
size,
|
|
39
|
+
color
|
|
40
|
+
});
|
|
41
|
+
return /*#__PURE__*/jsx("span", _objectSpread(_objectSpread(_objectSpread({
|
|
42
|
+
ref: innerRef,
|
|
43
|
+
className: cssClassName
|
|
44
|
+
}, rest), containerProps), {}, {
|
|
45
|
+
style: _objectSpread({
|
|
46
|
+
width,
|
|
47
|
+
height
|
|
48
|
+
}, style),
|
|
49
|
+
children: /*#__PURE__*/_jsx("svg", {
|
|
50
|
+
width: width && String(width),
|
|
51
|
+
height: height && String(height),
|
|
52
|
+
style: {
|
|
53
|
+
width,
|
|
54
|
+
height
|
|
55
|
+
},
|
|
56
|
+
fill: fill,
|
|
57
|
+
viewBox: "0 0 24 24"
|
|
58
|
+
}, void 0, /*#__PURE__*/_jsx("g", {
|
|
59
|
+
stroke: "none",
|
|
60
|
+
strokeWidth: "1",
|
|
61
|
+
fillRule: "evenodd"
|
|
62
|
+
}, void 0, /*#__PURE__*/_jsx("g", {
|
|
63
|
+
fill: fill,
|
|
64
|
+
fillRule: "nonzero"
|
|
65
|
+
}, void 0, _path || (_path = /*#__PURE__*/_jsx("path", {
|
|
66
|
+
d: "M5.8 7H2.2C1.54 7 1 6.46 1 5.8V2.2C1 1.54 1.54 1 2.2 1h3.6C6.46 1 7 1.54 7 2.2v3.6C7 6.46 6.46 7 5.8 7zm8 0h-3.6C9.54 7 9 6.46 9 5.8V2.2c0-.66.54-1.2 1.2-1.2h3.6c.66 0 1.2.54 1.2 1.2v3.6c0 .66-.54 1.2-1.2 1.2zm8 0h-3.6c-.66 0-1.2-.54-1.2-1.2V2.2c0-.66.54-1.2 1.2-1.2h3.6c.66 0 1.2.54 1.2 1.2v3.6c0 .66-.54 1.2-1.2 1.2zm-16 8H2.2c-.66 0-1.2-.54-1.2-1.2v-3.6C1 9.54 1.54 9 2.2 9h3.6c.66 0 1.2.54 1.2 1.2v3.6c0 .66-.54 1.2-1.2 1.2zm8 0h-3.6c-.66 0-1.2-.54-1.2-1.2v-3.6c0-.66.54-1.2 1.2-1.2h3.6c.66 0 1.2.54 1.2 1.2v3.6c0 .66-.54 1.2-1.2 1.2zm8 0h-3.6c-.66 0-1.2-.54-1.2-1.2v-3.6c0-.66.54-1.2 1.2-1.2h3.6c.66 0 1.2.54 1.2 1.2v3.6c0 .66-.54 1.2-1.2 1.2zm-16 8H2.2c-.66 0-1.2-.54-1.2-1.2v-3.6c0-.66.54-1.2 1.2-1.2h3.6c.66 0 1.2.54 1.2 1.2v3.6c0 .66-.54 1.2-1.2 1.2zm8 0h-3.6c-.66 0-1.2-.54-1.2-1.2v-3.6c0-.66.54-1.2 1.2-1.2h3.6c.66 0 1.2.54 1.2 1.2v3.6c0 .66-.54 1.2-1.2 1.2zm8 0h-3.6c-.66 0-1.2-.54-1.2-1.2v-3.6c0-.66.54-1.2 1.2-1.2h3.6c.66 0 1.2.54 1.2 1.2v3.6c0 .66-.54 1.2-1.2 1.2z"
|
|
67
|
+
})))))
|
|
68
|
+
}));
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
export { SvgIcon as default };
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
import 'core-js/modules/esnext.async-iterator.filter.js';
|
|
2
|
+
import 'core-js/modules/esnext.iterator.constructor.js';
|
|
3
|
+
import 'core-js/modules/esnext.iterator.filter.js';
|
|
4
|
+
import 'core-js/modules/esnext.async-iterator.for-each.js';
|
|
5
|
+
import 'core-js/modules/esnext.iterator.for-each.js';
|
|
6
|
+
import _jsx from '@babel/runtime/helpers/esm/jsx';
|
|
7
|
+
import _defineProperty from '@babel/runtime/helpers/esm/defineProperty';
|
|
8
|
+
import _objectWithoutProperties from '@babel/runtime/helpers/esm/objectWithoutProperties';
|
|
9
|
+
import 'react';
|
|
10
|
+
import { convertPropToCssClassName } from '@elliemae/ds-classnames';
|
|
11
|
+
import { jsx } from 'react/jsx-runtime';
|
|
12
|
+
|
|
13
|
+
var _path;
|
|
14
|
+
|
|
15
|
+
const _excluded = ["containerProps", "size", "color", "className", "style", "innerRef"];
|
|
16
|
+
|
|
17
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }
|
|
18
|
+
|
|
19
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
|
|
20
|
+
|
|
21
|
+
function SvgIcon(props) {
|
|
22
|
+
const {
|
|
23
|
+
containerProps = {},
|
|
24
|
+
size,
|
|
25
|
+
color,
|
|
26
|
+
className = '',
|
|
27
|
+
style = {},
|
|
28
|
+
innerRef
|
|
29
|
+
} = props,
|
|
30
|
+
rest = _objectWithoutProperties(props, _excluded);
|
|
31
|
+
|
|
32
|
+
const fill = color || props.fill || undefined;
|
|
33
|
+
const width = !size && !props.width ? 24 : props.width;
|
|
34
|
+
const height = !size && !props.height ? 24 : props.height;
|
|
35
|
+
const {
|
|
36
|
+
cssClassName
|
|
37
|
+
} = convertPropToCssClassName('icon', className, {
|
|
38
|
+
size,
|
|
39
|
+
color
|
|
40
|
+
});
|
|
41
|
+
return /*#__PURE__*/jsx("span", _objectSpread(_objectSpread(_objectSpread({
|
|
42
|
+
ref: innerRef,
|
|
43
|
+
className: cssClassName
|
|
44
|
+
}, rest), containerProps), {}, {
|
|
45
|
+
style: _objectSpread({
|
|
46
|
+
width,
|
|
47
|
+
height
|
|
48
|
+
}, style),
|
|
49
|
+
children: /*#__PURE__*/_jsx("svg", {
|
|
50
|
+
width: width && String(width),
|
|
51
|
+
height: height && String(height),
|
|
52
|
+
style: {
|
|
53
|
+
width,
|
|
54
|
+
height
|
|
55
|
+
},
|
|
56
|
+
fill: fill,
|
|
57
|
+
viewBox: "0 0 24 24"
|
|
58
|
+
}, void 0, /*#__PURE__*/_jsx("g", {
|
|
59
|
+
stroke: "none",
|
|
60
|
+
strokeWidth: "1",
|
|
61
|
+
fillRule: "evenodd"
|
|
62
|
+
}, void 0, /*#__PURE__*/_jsx("g", {
|
|
63
|
+
fill: fill,
|
|
64
|
+
fillRule: "nonzero"
|
|
65
|
+
}, void 0, _path || (_path = /*#__PURE__*/_jsx("path", {
|
|
66
|
+
d: "M7.98 3.166c2.756 0 5 2.242 5 5 0 .704-.149 1.391-.44 2.042l-.283.629.488.487 7.927 7.927a1.123 1.123 0 0 1-.793 1.914c-.3 0-.581-.116-.793-.328l-7.92-7.92-.49-.49-.631.287c-.658.3-1.353.452-2.066.452-2.757 0-5-2.243-5-5 0-.47.068-.938.2-1.387l3.093 3.094.293.293h3.414V6.75l-.293-.293-3.094-3.094c.45-.13.917-.198 1.387-.198m0-1c-1.144 0-2.209.325-3.118.88l4.118 4.12v2h-2l-4.118-4.12a5.962 5.962 0 0 0-.882 3.12 6 6 0 0 0 6 6c.886 0 1.723-.197 2.48-.542l7.92 7.92c.414.414.957.621 1.5.621s1.085-.207 1.5-.62a2.121 2.121 0 0 0 0-3l-7.927-7.928a5.97 5.97 0 0 0 .527-2.451 6 6 0 0 0-6-6z"
|
|
67
|
+
})))))
|
|
68
|
+
}));
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
export { SvgIcon as default };
|
package/esm/index.js
CHANGED
|
@@ -167,6 +167,7 @@ export { default as Menu } from './Menu.js';
|
|
|
167
167
|
export { default as MenuCollapse } from './MenuCollapse.js';
|
|
168
168
|
export { default as MenuExpand } from './MenuExpand.js';
|
|
169
169
|
export { default as MenuPicker } from './MenuPicker.js';
|
|
170
|
+
export { default as MenuPickerSmall } from './MenuPickeSmall.js';
|
|
170
171
|
export { default as Messages } from './Messages.js';
|
|
171
172
|
export { default as MessageSolid } from './MessageSolid.js';
|
|
172
173
|
export { default as MessagesUnread } from './MessagesUnread.js';
|
|
@@ -248,6 +249,7 @@ export { default as StatusCheck } from './StatusCheck.js';
|
|
|
248
249
|
export { default as Subtract } from './Subtract.js';
|
|
249
250
|
export { default as Summary } from './Summary.js';
|
|
250
251
|
export { default as Tasks } from './Tasks.js';
|
|
252
|
+
export { default as TechSupports } from './TechSupports.js';
|
|
251
253
|
export { default as TextFormat } from './TextFormat.js';
|
|
252
254
|
export { default as TextFormatAlt } from './TextFormatAlt.js';
|
|
253
255
|
export { default as TextStyleBold } from './TextStyleBold.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/ds-icons",
|
|
3
|
-
"version": "2.0.0-rc.
|
|
3
|
+
"version": "2.0.0-rc.14",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "ICE MT - Dimsum - Icons",
|
|
6
6
|
"module": "./esm/index.js",
|
|
@@ -159,6 +159,10 @@
|
|
|
159
159
|
"import": "./esm/TextFormat.js",
|
|
160
160
|
"require": "./cjs/TextFormat.js"
|
|
161
161
|
},
|
|
162
|
+
"./TechSupports": {
|
|
163
|
+
"import": "./esm/TechSupports.js",
|
|
164
|
+
"require": "./cjs/TechSupports.js"
|
|
165
|
+
},
|
|
162
166
|
"./Tasks": {
|
|
163
167
|
"import": "./esm/Tasks.js",
|
|
164
168
|
"require": "./cjs/Tasks.js"
|
|
@@ -527,6 +531,10 @@
|
|
|
527
531
|
"import": "./esm/Messages.js",
|
|
528
532
|
"require": "./cjs/Messages.js"
|
|
529
533
|
},
|
|
534
|
+
"./MenuPickeSmall": {
|
|
535
|
+
"import": "./esm/MenuPickeSmall.js",
|
|
536
|
+
"require": "./cjs/MenuPickeSmall.js"
|
|
537
|
+
},
|
|
530
538
|
"./MenuPicker": {
|
|
531
539
|
"import": "./esm/MenuPicker.js",
|
|
532
540
|
"require": "./cjs/MenuPicker.js"
|
|
@@ -1561,7 +1569,7 @@
|
|
|
1561
1569
|
"dev": "cross-env NODE_ENV=development && node ../../scripts/build/build.js -w"
|
|
1562
1570
|
},
|
|
1563
1571
|
"dependencies": {
|
|
1564
|
-
"@elliemae/ds-classnames": "2.0.0-rc.
|
|
1572
|
+
"@elliemae/ds-classnames": "2.0.0-rc.14",
|
|
1565
1573
|
"react-desc": "~4.1.3"
|
|
1566
1574
|
},
|
|
1567
1575
|
"peerDependencies": {
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
declare
|
|
3
|
-
export default
|
|
2
|
+
declare function SvgIcon(props: any): JSX.Element;
|
|
3
|
+
export default SvgIcon;
|
package/types/CloseXsmall.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
declare
|
|
3
|
-
export default
|
|
2
|
+
declare function SvgIcon(props: any): JSX.Element;
|
|
3
|
+
export default SvgIcon;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
declare
|
|
3
|
-
export default
|
|
2
|
+
declare function SvgIcon(props: any): JSX.Element;
|
|
3
|
+
export default SvgIcon;
|
package/types/MenuPicker.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
declare
|
|
3
|
-
export default
|
|
2
|
+
declare function SvgIcon(props: any): JSX.Element;
|
|
3
|
+
export default SvgIcon;
|
package/types/index.d.ts
CHANGED
|
@@ -167,6 +167,7 @@ export { default as Menu } from './Menu';
|
|
|
167
167
|
export { default as MenuCollapse } from './MenuCollapse';
|
|
168
168
|
export { default as MenuExpand } from './MenuExpand';
|
|
169
169
|
export { default as MenuPicker } from './MenuPicker';
|
|
170
|
+
export { default as MenuPickerSmall } from './MenuPickeSmall';
|
|
170
171
|
export { default as Messages } from './Messages';
|
|
171
172
|
export { default as MessageSolid } from './MessageSolid';
|
|
172
173
|
export { default as MessagesUnread } from './MessagesUnread';
|
|
@@ -248,6 +249,7 @@ export { default as StatusCheck } from './StatusCheck';
|
|
|
248
249
|
export { default as Subtract } from './Subtract';
|
|
249
250
|
export { default as Summary } from './Summary';
|
|
250
251
|
export { default as Tasks } from './Tasks';
|
|
252
|
+
export { default as TechSupports } from './TechSupports';
|
|
251
253
|
export { default as TextFormat } from './TextFormat';
|
|
252
254
|
export { default as TextFormatAlt } from './TextFormatAlt';
|
|
253
255
|
export { default as TextStyleBold } from './TextStyleBold';
|