@occmundial/occ-atomic 1.18.2 → 1.20.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,37 @@
1
+ # [1.20.0](https://github.com/occmundial/occ-atomic/compare/v1.19.0...v1.20.0) (2022-01-19)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * Change in TextField icons ([989abb3](https://github.com/occmundial/occ-atomic/commit/989abb35e3d7e346a68519939f5cc4b489affb7b))
7
+ * Simplify TextField status logic ([574824a](https://github.com/occmundial/occ-atomic/commit/574824a63c6ba8e83cefafaca102566e53578d0e))
8
+
9
+
10
+ ### Features
11
+
12
+ * Add searchField theme to the TextField component ([3f36f4f](https://github.com/occmundial/occ-atomic/commit/3f36f4fcef97130a11afd0ed1e857d289295e491))
13
+
14
+ # [1.19.0](https://github.com/occmundial/occ-atomic/compare/v1.18.4...v1.19.0) (2021-12-20)
15
+
16
+
17
+ ### Features
18
+
19
+ * New matchJob, cash and profileView icons ([95a0c68](https://github.com/occmundial/occ-atomic/commit/95a0c68fee7d46bd2e674c7674e59b3ebd594dbf))
20
+
21
+ ## [1.18.4](https://github.com/occmundial/occ-atomic/compare/v1.18.3...v1.18.4) (2021-11-03)
22
+
23
+
24
+ ### Bug Fixes
25
+
26
+ * Correction of the iconName property of the password icon in the enabled field ([bfad08e](https://github.com/occmundial/occ-atomic/commit/bfad08e653eb4c1fe292e70fe29c097a323891eb))
27
+
28
+ ## [1.18.3](https://github.com/occmundial/occ-atomic/compare/v1.18.2...v1.18.3) (2021-11-02)
29
+
30
+
31
+ ### Bug Fixes
32
+
33
+ * Correction of the iconName property of the password icon ([a7e2842](https://github.com/occmundial/occ-atomic/commit/a7e2842bcf2f414f3ecee3534d0e3a6730893e30))
34
+
1
35
  ## [1.18.2](https://github.com/occmundial/occ-atomic/compare/v1.18.1...v1.18.2) (2021-10-20)
2
36
 
3
37
 
@@ -154,7 +154,7 @@ describe("Autocomplete", function () {
154
154
  wrapper.setState({
155
155
  focus: true
156
156
  });
157
- wrapper.find('.Droplist-item-0-1-31').at(0).simulate('mousedown');
157
+ wrapper.find('.Droplist-item-0-1-34').at(0).simulate('mousedown');
158
158
  expect(onMouseDown.mock.calls[0][0]).toEqual({
159
159
  id: 1,
160
160
  text: 'Administrador',
@@ -164,7 +164,7 @@ describe("Autocomplete", function () {
164
164
  focus: true,
165
165
  value: 'a'
166
166
  });
167
- wrapper.find('.Droplist-item-0-1-31').at(1).simulate('mousedown');
167
+ wrapper.find('.Droplist-item-0-1-34').at(1).simulate('mousedown');
168
168
  expect(onMouseDown.mock.calls[1][0]).toEqual({
169
169
  id: 2,
170
170
  text: 'Administrador Sr',
@@ -209,7 +209,7 @@ describe("Autocomplete", function () {
209
209
  wrapper.setState({
210
210
  focus: true
211
211
  });
212
- wrapper.find('.Droplist-item-0-1-31').at(0).simulate('mousedown');
212
+ wrapper.find('.Droplist-item-0-1-34').at(0).simulate('mousedown');
213
213
  expect(onMouseDown.mock.calls.length).toBe(1);
214
214
  });
215
215
  it('calls the onFocus function', function () {
@@ -222,60 +222,82 @@ var TextField = /*#__PURE__*/function (_React$Component) {
222
222
  type = _this$props7.type,
223
223
  inputClassName = _this$props7.inputClassName,
224
224
  alignRight = _this$props7.alignRight,
225
- hjWhitelist = _this$props7.hjWhitelist;
225
+ hjWhitelist = _this$props7.hjWhitelist,
226
+ searchField = _this$props7.searchField;
226
227
  var className = classes.input;
227
- if (iconName) className += ' ' + classes.hasIcon;
228
- if (clear) className += ' ' + classes.hasClear;
229
- if (alignRight) className += ' ' + classes.alignRight;
230
- if (type == "select") className += ' ' + classes.select;
231
- if (type == "textarea") className += ' ' + classes.textarea;
232
- if (type == "password") className += ' ' + classes.hasPass;
228
+ if (searchField) className += " ".concat(classes.searchField);
229
+ if (iconName) className += " ".concat(classes.hasIcon);
230
+ if (searchField && iconName) className += " ".concat(classes.searchFieldHasIcon);
231
+ if (clear) className += " ".concat(classes.hasClear);
232
+ if (alignRight) className += " ".concat(classes.alignRight);
233
+ if (type == "select") className += " ".concat(classes.select);
234
+ if (type == "textarea") className += " ".concat(classes.textarea);
235
+ if (type == "password") className += " ".concat(classes.hasPass);
233
236
  if (hjWhitelist) className += ' data-hj-whitelist';
234
- if (inputClassName) className += ' ' + inputClassName;
237
+ if (inputClassName) className += " ".concat(inputClassName);
235
238
  return className;
236
239
  }
237
240
  }, {
238
- key: "render",
239
- value: function render() {
240
- var _this2 = this;
241
-
241
+ key: "setIconColor",
242
+ value: function setIconColor() {
242
243
  var _this$state = this.state,
243
244
  status = _this$state.status,
244
245
  value = _this$state.value,
245
- touched = _this$state.touched,
246
- showPass = _this$state.showPass,
247
- passIconBeingClicked = _this$state.passIconBeingClicked;
246
+ touched = _this$state.touched;
248
247
  var _this$props8 = this.props,
249
- classes = _this$props8.classes,
250
- input = _this$props8.input,
251
- meta = _this$props8.meta,
252
- label = _this$props8.label,
253
- placeholder = _this$props8.placeholder,
254
- counter = _this$props8.counter,
255
- maxLength = _this$props8.maxLength,
256
- type = _this$props8.type,
257
- name = _this$props8.name,
258
- options = _this$props8.options,
259
- id = _this$props8.id,
260
- style = _this$props8.style,
261
248
  disabled = _this$props8.disabled,
262
- autoFocus = _this$props8.autoFocus,
249
+ searchField = _this$props8.searchField,
263
250
  error = _this$props8.error,
264
- assistiveText = _this$props8.assistiveText,
265
- clear = _this$props8.clear,
266
- iconName = _this$props8.iconName,
267
- allowError = _this$props8.allowError,
268
- lockHeight = _this$props8.lockHeight,
269
- required = _this$props8.required,
270
- mask = _this$props8.mask,
271
- guide = _this$props8.guide,
272
- inputMode = _this$props8.inputMode,
273
- disableAutoComplete = _this$props8.disableAutoComplete,
274
- pattern = _this$props8.pattern;
251
+ allowError = _this$props8.allowError;
252
+ if (disabled) return _colors["default"].grey500;
253
+ if (status === 'focus' && searchField) return _colors["default"].prim;
254
+ if (error && (allowError || touched)) return _colors["default"].error;
255
+ if (status !== 'focus' && searchField && value) return _colors["default"].grey900;
256
+ return _colors["default"].grey500;
257
+ }
258
+ }, {
259
+ key: "render",
260
+ value: function render() {
261
+ var _this2 = this;
262
+
263
+ var _this$state2 = this.state,
264
+ status = _this$state2.status,
265
+ value = _this$state2.value,
266
+ touched = _this$state2.touched,
267
+ showPass = _this$state2.showPass,
268
+ passIconBeingClicked = _this$state2.passIconBeingClicked;
269
+ var _this$props9 = this.props,
270
+ classes = _this$props9.classes,
271
+ input = _this$props9.input,
272
+ meta = _this$props9.meta,
273
+ label = _this$props9.label,
274
+ placeholder = _this$props9.placeholder,
275
+ counter = _this$props9.counter,
276
+ maxLength = _this$props9.maxLength,
277
+ type = _this$props9.type,
278
+ name = _this$props9.name,
279
+ options = _this$props9.options,
280
+ id = _this$props9.id,
281
+ style = _this$props9.style,
282
+ disabled = _this$props9.disabled,
283
+ autoFocus = _this$props9.autoFocus,
284
+ error = _this$props9.error,
285
+ assistiveText = _this$props9.assistiveText,
286
+ clear = _this$props9.clear,
287
+ iconName = _this$props9.iconName,
288
+ allowError = _this$props9.allowError,
289
+ lockHeight = _this$props9.lockHeight,
290
+ required = _this$props9.required,
291
+ mask = _this$props9.mask,
292
+ guide = _this$props9.guide,
293
+ inputMode = _this$props9.inputMode,
294
+ disableAutoComplete = _this$props9.disableAutoComplete,
295
+ pattern = _this$props9.pattern,
296
+ searchField = _this$props9.searchField;
275
297
  var realStatus = status;
276
298
  var InputType = type == "select" ? "select" : type == "textarea" ? "textarea" : "input";
277
299
  var errorStatus = meta && meta.error && (meta.touched || allowError) || error && (touched || allowError) && !passIconBeingClicked;
278
- if (disabled) realStatus = 'disabled';else if (status != 'focus' && errorStatus) realStatus = 'error';
300
+ if (disabled) realStatus = 'disabled';else if (status != 'focus' && errorStatus) realStatus = 'error';else if (status !== 'focus' && searchField && value) realStatus = 'filled';
279
301
  var element, passIcon;
280
302
  var commonProps = {
281
303
  name: name,
@@ -323,10 +345,10 @@ var TextField = /*#__PURE__*/function (_React$Component) {
323
345
  passIcon = /*#__PURE__*/_react["default"].createElement("div", {
324
346
  className: classes.passIcon
325
347
  }, /*#__PURE__*/_react["default"].createElement(_Icon["default"], {
326
- iconName: "eye",
348
+ iconName: "eyeSolid",
327
349
  width: _iconSizes["default"].small,
328
350
  height: _iconSizes["default"].small,
329
- colors: [_colors["default"].grey100]
351
+ colors: [_colors["default"].grey200]
330
352
  }));
331
353
  } else if (type == "select") {
332
354
  element = /*#__PURE__*/_react["default"].createElement(InputType, commonProps, /*#__PURE__*/_react["default"].createElement("option", {
@@ -377,10 +399,10 @@ var TextField = /*#__PURE__*/function (_React$Component) {
377
399
  onMouseOut: this.outOfPassIcon,
378
400
  className: classes.passIcon
379
401
  }, /*#__PURE__*/_react["default"].createElement(_Icon["default"], {
380
- iconName: "eye",
402
+ iconName: "eyeSolid",
381
403
  width: _iconSizes["default"].small,
382
404
  height: _iconSizes["default"].small,
383
- colors: showPass ? [_colors["default"].grey500] : [_colors["default"].grey200]
405
+ colors: showPass ? [_colors["default"].grey900] : [_colors["default"].grey400]
384
406
  }));
385
407
  }
386
408
 
@@ -395,10 +417,10 @@ var TextField = /*#__PURE__*/function (_React$Component) {
395
417
  className: classes.inputWrap
396
418
  }, iconName && /*#__PURE__*/_react["default"].createElement(_Icon["default"], {
397
419
  iconName: iconName,
398
- width: _iconSizes["default"].base,
399
- height: _iconSizes["default"].base,
420
+ width: _iconSizes["default"].small,
421
+ height: _iconSizes["default"].small,
400
422
  className: classes.icon,
401
- colors: disabled ? [_colors["default"].grey500] : [_colors["default"].grey500]
423
+ colors: [this.setIconColor()]
402
424
  }), type == 'select' && /*#__PURE__*/_react["default"].createElement("div", {
403
425
  className: classes.selectIcon
404
426
  }, /*#__PURE__*/_react["default"].createElement(_Icon["default"], {
@@ -410,7 +432,9 @@ var TextField = /*#__PURE__*/function (_React$Component) {
410
432
  onClick: this.onClear,
411
433
  className: classes.clear
412
434
  }, /*#__PURE__*/_react["default"].createElement(_Icon["default"], {
413
- iconName: "close"
435
+ iconName: "close",
436
+ width: _iconSizes["default"].small,
437
+ height: _iconSizes["default"].small
414
438
  })), element), (assistiveText || counter && maxLength || lockHeight) && /*#__PURE__*/_react["default"].createElement("div", {
415
439
  className: classes.bottom
416
440
  }, assistiveText && /*#__PURE__*/_react["default"].createElement("label", {
@@ -549,7 +573,10 @@ TextField.propTypes = {
549
573
  style: _propTypes["default"].object,
550
574
 
551
575
  /** Regular expression to validate the input content. */
552
- pattern: _propTypes["default"].string
576
+ pattern: _propTypes["default"].string,
577
+
578
+ /** Size of the TextField. */
579
+ searchField: _propTypes["default"].bool
553
580
  };
554
581
  var _default = TextField;
555
582
  exports["default"] = _default;
@@ -228,6 +228,14 @@ describe("TextField", function () {
228
228
  });
229
229
  expect(wrapper.state('value')).toBe('123abc');
230
230
  });
231
+ it('renders as a SearchField', function () {
232
+ var wrapper = (0, _enzyme.shallow)( /*#__PURE__*/_react["default"].createElement(_TextField["default"], {
233
+ searchField: true,
234
+ classes: classes
235
+ }));
236
+ var input = wrapper.find('input');
237
+ expect(input.hasClass('searchField')).toBe(true);
238
+ });
231
239
  });
232
240
  describe("TextFieldJSS", function () {
233
241
  it('matches the snapshot', function () {
@@ -15,6 +15,8 @@ var _spacing = _interopRequireDefault(require("../subatomic/spacing"));
15
15
 
16
16
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
17
17
 
18
+ function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
19
+
18
20
  var _default = {
19
21
  container: {
20
22
  position: 'relative',
@@ -44,6 +46,13 @@ var _default = {
44
46
  focus: {
45
47
  '& $input': {
46
48
  borderColor: _colors["default"].prim
49
+ },
50
+ '& $searchField': {
51
+ borderWidth: 2,
52
+ paddingLeft: _spacing["default"].tiny - 1
53
+ },
54
+ '& $searchFieldHasIcon': {
55
+ paddingLeft: 41
47
56
  }
48
57
  },
49
58
  error: {
@@ -51,6 +60,24 @@ var _default = {
51
60
  borderColor: _colors["default"].error,
52
61
  color: _colors["default"].errorText,
53
62
  background: (0, _hexRgba["default"])(_colors["default"].errorText, 4)
63
+ },
64
+ '& $searchField': {
65
+ borderWidth: 2,
66
+ color: _colors["default"].ink,
67
+ paddingLeft: _spacing["default"].tiny - 1
68
+ },
69
+ '& $searchFieldHasIcon': {
70
+ paddingLeft: 41
71
+ }
72
+ },
73
+ filled: {
74
+ '& $input': {
75
+ borderColor: _colors["default"].grey900,
76
+ borderWidth: 2,
77
+ paddingLeft: _spacing["default"].tiny - 1
78
+ },
79
+ '& $searchFieldHasIcon': {
80
+ paddingLeft: 41
54
81
  }
55
82
  },
56
83
  label: {
@@ -92,7 +119,7 @@ var _default = {
92
119
  background: _colors["default"].bgWhite,
93
120
  border: "1px solid ".concat(_colors["default"].grey200),
94
121
  borderRadius: 4,
95
- padding: '8px 16px',
122
+ padding: [_spacing["default"].tiny, _spacing["default"].small],
96
123
  boxShadow: 'none',
97
124
  outline: 'none',
98
125
  transition: '0.3s all',
@@ -157,8 +184,9 @@ var _default = {
157
184
  },
158
185
  icon: {
159
186
  position: 'absolute',
160
- left: _spacing["default"].gutter,
161
- top: _spacing["default"].tiny
187
+ left: _spacing["default"].small,
188
+ top: '50%',
189
+ transform: 'translateY(-50%)'
162
190
  },
163
191
  passIcon: {
164
192
  width: 24,
@@ -191,7 +219,7 @@ var _default = {
191
219
  hasClear: {
192
220
  paddingRight: 42
193
221
  },
194
- clear: {
222
+ clear: _defineProperty({
195
223
  width: 24,
196
224
  height: 24,
197
225
  background: 'none',
@@ -200,11 +228,12 @@ var _default = {
200
228
  margin: 0,
201
229
  position: 'absolute',
202
230
  right: 12,
203
- top: 8,
231
+ top: '50%',
232
+ transform: 'translateY(-50%)',
204
233
  zIndex: 1,
205
234
  outline: 0,
206
235
  cursor: 'pointer'
207
- },
236
+ }, "padding", 3),
208
237
  alignRight: {
209
238
  textAlign: 'right'
210
239
  },
@@ -220,6 +249,13 @@ var _default = {
220
249
  bottom: {
221
250
  height: 20,
222
251
  marginTop: 4
223
- }
252
+ },
253
+ searchField: {
254
+ height: _spacing["default"].large,
255
+ borderRadius: _spacing["default"].base,
256
+ borderColor: _colors["default"].grey600,
257
+ background: [_colors["default"].bgWhite, '!important']
258
+ },
259
+ searchFieldHasIcon: {}
224
260
  };
225
261
  exports["default"] = _default;
@@ -0,0 +1,23 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports["default"] = void 0;
7
+
8
+ var _colors = _interopRequireDefault(require("../colors"));
9
+
10
+ var _spacing = _interopRequireDefault(require("../spacing"));
11
+
12
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
13
+
14
+ var _default = {
15
+ width: _spacing["default"].base,
16
+ height: _spacing["default"].base,
17
+ display: 'inline-block',
18
+ icon: function icon() {
19
+ var color = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : [_colors["default"].grey900];
20
+ return "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\">\n <path fill=\"".concat(color[0], "\" fill-rule=\"evenodd\" d=\"M4 6C4 5.44772 4.44772 5 5 5H18.5C19.0523 5 19.5 5.44772 19.5 6V12.075C19.2577 12.0258 19.0068 12 18.75 12C17.3054 12 16.0516 12.8169 15.4252 14.0139C14.3321 14.1076 13.3729 14.6704 12.7497 15.5H5C4.44772 15.5 4 15.0523 4 14.5V6ZM14 17.75C14 17.0433 14.4189 16.4344 15.022 16.1582C15.1562 17.3988 15.8956 18.4579 16.9388 19.0344C16.6263 19.3237 16.2083 19.5 15.75 19.5C14.7835 19.5 14 18.7165 14 17.75ZM22.5 15.75C22.5 17.7118 20.9936 19.3217 19.0745 19.4862C18.4488 20.682 17.1959 21.5 15.75 21.5C13.6789 21.5 12 19.8211 12 17.75C12 17.666 12.0028 17.5826 12.0082 17.5H5C3.34315 17.5 2 16.1569 2 14.5V6C2 4.34315 3.34315 3 5 3H18.5C20.1569 3 21.5 4.34315 21.5 6V13.2005C22.1206 13.8695 22.5 14.7655 22.5 15.75ZM15.2448 8.26843H18.2562V6.26843H15.2448V8.26843ZM11.75 9C11.3358 9 11 9.33579 11 9.75C11 10.1642 11.3358 10.5 11.75 10.5C12.1642 10.5 12.5 10.1642 12.5 9.75C12.5 9.33579 12.1642 9 11.75 9ZM9 9.75C9 8.23122 10.2312 7 11.75 7C13.2688 7 14.5 8.23122 14.5 9.75C14.5 11.2688 13.2688 12.5 11.75 12.5C10.2312 12.5 9 11.2688 9 9.75ZM17 15.75C17 14.7835 17.7835 14 18.75 14C19.7165 14 20.5 14.7835 20.5 15.75C20.5 16.7165 19.7165 17.5 18.75 17.5C17.7835 17.5 17 16.7165 17 15.75ZM5.26418 14.2684H8.2562V12.2684H5.26418V14.2684Z\" />\n </svg>");
21
+ }
22
+ };
23
+ exports["default"] = _default;
@@ -0,0 +1,23 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports["default"] = void 0;
7
+
8
+ var _colors = _interopRequireDefault(require("../colors"));
9
+
10
+ var _spacing = _interopRequireDefault(require("../spacing"));
11
+
12
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
13
+
14
+ var _default = {
15
+ width: _spacing["default"].base,
16
+ height: _spacing["default"].base,
17
+ display: 'inline-block',
18
+ icon: function icon() {
19
+ var color = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : [_colors["default"].grey900];
20
+ return "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\">\n <path fill=\"".concat(color[0], "\" clip-rule=\"evenodd\" d=\"m22.072 11.855-8.011 8.301-3.588-3.018-1.277 1.52 4.296 3.611a.987.987 0 0 0 1.358-.07l8.65-8.962-1.428-1.382z\" />\n <path fill=\"").concat(color[0], "\" clip-rule=\"evenodd\" d=\"M14.236 18.09h-.592l.336.278.256-.278zM7.896 18.775a1.23 1.23 0 0 1 .151-.674H4.262a.766.766 0 0 1-.696-.812v-4.842h5.979v1.637h1.95v-1.637h5.98v2.322l1.95-2.02v-.929c.397-.41.617-.96.615-1.532V6.015c0-.57-.22-1.12-.615-1.532a2.09 2.09 0 0 0-1.498-.627h-3.111A2.868 2.868 0 0 0 11.948 1H9.092a2.868 2.868 0 0 0-2.868 2.856H3.113a2.101 2.101 0 0 0-1.498.627A2.218 2.218 0 0 0 1 6.015v4.273c0 .57.22 1.12.615 1.532v5.469a2.705 2.705 0 0 0 2.647 2.763h4.563l-.464-.395a1.323 1.323 0 0 1-.465-.882zM9.057 2.962h2.856a.917.917 0 0 1 .918.894H8.187a.917.917 0 0 1 .905-.894h-.035zM3.02 10.451a.199.199 0 0 1-.058-.163V6.015a.197.197 0 0 1 .07-.162.105.105 0 0 1 .093 0h14.802a.139.139 0 0 1 .105 0c.027.05.035.107.023.162v4.273a.233.233 0 0 1-.058.162.14.14 0 0 1-.105 0h-6.397V8.128h-1.95v2.322H3.113a.105.105 0 0 1-.093 0z\" />\n </svg>");
21
+ }
22
+ };
23
+ exports["default"] = _default;
@@ -0,0 +1,23 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports["default"] = void 0;
7
+
8
+ var _colors = _interopRequireDefault(require("../colors"));
9
+
10
+ var _spacing = _interopRequireDefault(require("../spacing"));
11
+
12
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
13
+
14
+ var _default = {
15
+ width: _spacing["default"].base,
16
+ height: _spacing["default"].base,
17
+ display: 'inline-block',
18
+ icon: function icon() {
19
+ var color = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : [_colors["default"].grey900];
20
+ return "<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\">\n <path fill=\"".concat(color[0], "\" fill-rule=\"evenodd\" d=\"M4.94183 4.86614C4.42808 4.91109 4.04803 5.36401 4.09298 5.87776L5.07614 17.1153C5.31589 16.4792 5.75925 15.9133 6.32898 15.46C7.27278 14.7092 8.60837 14.2157 10.2077 14.0758C11.807 13.9358 13.208 14.1899 14.2678 14.7655C14.8967 15.107 15.4242 15.5769 15.7711 16.1482L14.7907 4.94183C14.7458 4.42808 14.2928 4.04803 13.7791 4.09298L4.94183 4.86614ZM14.1693 17.6505L6.92694 18.2841L6.92605 18.274C6.8976 17.9488 7.04463 17.5031 7.60176 17.0598C8.16028 16.6155 9.08494 16.2261 10.3858 16.1123C11.6867 15.9985 12.665 16.2213 13.2922 16.562C13.9178 16.9017 14.14 17.3152 14.1684 17.6404L14.1693 17.6505ZM2.23251 6.04053C2.09767 4.49927 3.2378 3.14051 4.77906 3.00567L13.6163 2.23251C14.7212 2.13585 15.7322 2.69436 16.2659 3.58614L16.2736 3.55411L20.8133 4.64489C22.3177 5.00635 23.2442 6.51887 22.8827 8.02321L20.0467 19.8265C19.6852 21.3309 18.1727 22.2574 16.6684 21.8959L16.656 21.893L9.40688 19.9419L6.28469 20.215C4.74342 20.3499 3.38467 19.2098 3.24982 17.6685L2.23251 6.04053ZM14.8299 19.4674L17.1149 20.0824C17.613 20.1963 18.1111 19.8883 18.2308 19.3902L21.0668 7.5869C21.1873 7.08545 20.8785 6.58128 20.377 6.46079L16.7215 5.58246L17.6685 16.407C17.8033 17.9483 16.6632 19.307 15.1219 19.4419L14.8299 19.4674ZM8.53286 8.28622C8.80484 7.96208 9.19498 7.7453 9.63951 7.70641C10.084 7.66752 10.5059 7.81326 10.83 8.08524C11.1542 8.35723 11.371 8.74736 11.4099 9.1919C11.4487 9.63643 11.303 10.0583 11.031 10.3824C10.759 10.7066 10.3689 10.9233 9.92436 10.9622C9.47983 11.0011 9.05797 10.8554 8.73383 10.5834C8.40969 10.3114 8.19291 9.92128 8.15402 9.47675C8.11513 9.03221 8.26087 8.61036 8.53286 8.28622ZM9.47674 5.84593C8.51372 5.93019 7.67604 6.4019 7.10221 7.08576C6.52838 7.76963 6.20929 8.6765 6.29355 9.63952C6.3778 10.6025 6.84951 11.4402 7.53338 12.0141C8.21724 12.5879 9.12411 12.907 10.0871 12.8227C11.0501 12.7385 11.8878 12.2667 12.4617 11.5829C13.0355 10.899 13.3546 9.99215 13.2703 9.02913C13.1861 8.06611 12.7144 7.22842 12.0305 6.65459C11.3466 6.08076 10.4398 5.76168 9.47674 5.84593Z\" />\n </svg>");
21
+ }
22
+ };
23
+ exports["default"] = _default;
@@ -225,6 +225,12 @@ var _warning = _interopRequireDefault(require("./icons/warning"));
225
225
 
226
226
  var _warningSolid = _interopRequireDefault(require("./icons/warningSolid"));
227
227
 
228
+ var _matchJob = _interopRequireDefault(require("./icons/matchJob"));
229
+
230
+ var _cash = _interopRequireDefault(require("./icons/cash"));
231
+
232
+ var _profileView = _interopRequireDefault(require("./icons/profileView"));
233
+
228
234
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
229
235
 
230
236
  var _default = {
@@ -348,6 +354,9 @@ var _default = {
348
354
  moreOptionsHorizontal: _moreOptionsHorizontal["default"],
349
355
  warning: _warning["default"],
350
356
  warningSolid: _warningSolid["default"],
357
+ matchJob: _matchJob["default"],
358
+ cash: _cash["default"],
359
+ profileView: _profileView["default"],
351
360
  occatomic: {
352
361
  width: '45px',
353
362
  height: '45px',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@occmundial/occ-atomic",
3
- "version": "1.18.2",
3
+ "version": "1.20.0",
4
4
  "description": "Collection of shareable styled React components for OCC applications.",
5
5
  "homepage": "http://occmundial.github.io/occ-atomic",
6
6
  "main": "build/index.js",