bonree-icons 2.0.116 → 2.0.117

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.
@@ -0,0 +1,743 @@
1
+ (function webpackUniversalModuleDefinition(root, factory) {
2
+ if(typeof exports === 'object' && typeof module === 'object')
3
+ module.exports = factory(require("react"));
4
+ else if(typeof define === 'function' && define.amd)
5
+ define(["react"], factory);
6
+ else if(typeof exports === 'object')
7
+ exports["index"] = factory(require("react"));
8
+ else
9
+ root["index"] = factory(root["react"]);
10
+ })(self, (__WEBPACK_EXTERNAL_MODULE__8156__) => {
11
+ return /******/ (() => { // webpackBootstrap
12
+ /******/ "use strict";
13
+ /******/ var __webpack_modules__ = ({
14
+
15
+ /***/ 70261:
16
+ /***/ ((module, __webpack_exports__, __webpack_require__) => {
17
+
18
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
19
+ /* harmony export */ "Z": () => (__WEBPACK_DEFAULT_EXPORT__)
20
+ /* harmony export */ });
21
+ /* harmony import */ var _node_modules_css_loader_dist_runtime_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(8081);
22
+ /* harmony import */ var _node_modules_css_loader_dist_runtime_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_css_loader_dist_runtime_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0__);
23
+ /* harmony import */ var _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(23645);
24
+ /* harmony import */ var _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__);
25
+ // Imports
26
+
27
+
28
+ var ___CSS_LOADER_EXPORT___ = _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1___default()((_node_modules_css_loader_dist_runtime_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default()));
29
+ // Module
30
+ ___CSS_LOADER_EXPORT___.push([module.id, ".bonree-icons-wrapper-ListOneBoshbpm {\r\n font-size: 50px;\r\n color: #4E4E4E;\r\n font-style: normal;\r\n line-height: 0;\r\n display: inline-block;\r\n text-align: center;\r\n text-transform: none;\r\n vertical-align: middle;\r\n text-rendering: optimizeLegibility;\r\n -webkit-font-smoothing: antialiased;\r\n -moz-osx-font-smoothing: grayscale;\r\n}\r\n\r\n.bonree-icons-button-ListOneBoshbpm:hover {\r\n cursor: pointer;\r\n background-color: rgba(0, 204, 217, 0.1);\r\n color: #00ccd9;\r\n}\r\n\r\n.bonree-icons-border-ListOneBoshbpm {\r\n border-radius: 3px;\r\n border: 1px solid #d9d9d9;\r\n}\r\n\r\n.bonree-icons-border-ListOneBoshbpm:hover {\r\n border: 1px solid #00ccd9;\r\n}\r\n\r\n.bonree-icons-border-ListOneBoshbpm:active {\r\n border: 1px solid #00ccd9;\r\n box-shadow: 0 0 0 3px rgba(0, 204, 217, 0.1);\r\n}\r\n\r\n.bonree-icons-border-disabled-ListOneBoshbpm {\r\n cursor: not-allowed;\r\n color: #B5B5B5;\r\n background-color: #f5f5f5;\r\n border: 1px solid #d9d9d9;\r\n}\r\n\r\n.bonree-icons-border-disabled-ListOneBoshbpm:hover {\r\n cursor: not-allowed;\r\n color: #B5B5B5;\r\n background-color: #f5f5f5;\r\n border: 1px solid #d9d9d9;\r\n}\r\n\r\n.bonree-icons-border-disabled-ListOneBoshbpm:active {\r\n border: 1px solid #d9d9d9;\r\n box-shadow: none;\r\n}\r\n\r\n.bonree-icons-disabled-ListOneBoshbpm {\r\n cursor: not-allowed;\r\n color: #B5B5B5;\r\n background-color: #f5f5f5;\r\n}\r\n\r\n.bonree-icons-disabled-ListOneBoshbpm:hover {\r\n cursor: not-allowed;\r\n color: #B5B5B5;\r\n background-color: #f5f5f5;\r\n}\r\n\r\n.bonree-icons-disabled-ListOneBoshbpm:active {\r\n box-shadow: none;\r\n}", ""]);
31
+ // Exports
32
+ /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (___CSS_LOADER_EXPORT___);
33
+
34
+
35
+ /***/ }),
36
+
37
+ /***/ 23645:
38
+ /***/ ((module) => {
39
+
40
+
41
+
42
+ /*
43
+ MIT License http://www.opensource.org/licenses/mit-license.php
44
+ Author Tobias Koppers @sokra
45
+ */
46
+ module.exports = function (cssWithMappingToString) {
47
+ var list = []; // return the list of modules as css string
48
+
49
+ list.toString = function toString() {
50
+ return this.map(function (item) {
51
+ var content = "";
52
+ var needLayer = typeof item[5] !== "undefined";
53
+
54
+ if (item[4]) {
55
+ content += "@supports (".concat(item[4], ") {");
56
+ }
57
+
58
+ if (item[2]) {
59
+ content += "@media ".concat(item[2], " {");
60
+ }
61
+
62
+ if (needLayer) {
63
+ content += "@layer".concat(item[5].length > 0 ? " ".concat(item[5]) : "", " {");
64
+ }
65
+
66
+ content += cssWithMappingToString(item);
67
+
68
+ if (needLayer) {
69
+ content += "}";
70
+ }
71
+
72
+ if (item[2]) {
73
+ content += "}";
74
+ }
75
+
76
+ if (item[4]) {
77
+ content += "}";
78
+ }
79
+
80
+ return content;
81
+ }).join("");
82
+ }; // import a list of modules into the list
83
+
84
+
85
+ list.i = function i(modules, media, dedupe, supports, layer) {
86
+ if (typeof modules === "string") {
87
+ modules = [[null, modules, undefined]];
88
+ }
89
+
90
+ var alreadyImportedModules = {};
91
+
92
+ if (dedupe) {
93
+ for (var k = 0; k < this.length; k++) {
94
+ var id = this[k][0];
95
+
96
+ if (id != null) {
97
+ alreadyImportedModules[id] = true;
98
+ }
99
+ }
100
+ }
101
+
102
+ for (var _k = 0; _k < modules.length; _k++) {
103
+ var item = [].concat(modules[_k]);
104
+
105
+ if (dedupe && alreadyImportedModules[item[0]]) {
106
+ continue;
107
+ }
108
+
109
+ if (typeof layer !== "undefined") {
110
+ if (typeof item[5] === "undefined") {
111
+ item[5] = layer;
112
+ } else {
113
+ item[1] = "@layer".concat(item[5].length > 0 ? " ".concat(item[5]) : "", " {").concat(item[1], "}");
114
+ item[5] = layer;
115
+ }
116
+ }
117
+
118
+ if (media) {
119
+ if (!item[2]) {
120
+ item[2] = media;
121
+ } else {
122
+ item[1] = "@media ".concat(item[2], " {").concat(item[1], "}");
123
+ item[2] = media;
124
+ }
125
+ }
126
+
127
+ if (supports) {
128
+ if (!item[4]) {
129
+ item[4] = "".concat(supports);
130
+ } else {
131
+ item[1] = "@supports (".concat(item[4], ") {").concat(item[1], "}");
132
+ item[4] = supports;
133
+ }
134
+ }
135
+
136
+ list.push(item);
137
+ }
138
+ };
139
+
140
+ return list;
141
+ };
142
+
143
+ /***/ }),
144
+
145
+ /***/ 8081:
146
+ /***/ ((module) => {
147
+
148
+
149
+
150
+ module.exports = function (i) {
151
+ return i[1];
152
+ };
153
+
154
+ /***/ }),
155
+
156
+ /***/ 27418:
157
+ /***/ ((module) => {
158
+
159
+ /*
160
+ object-assign
161
+ (c) Sindre Sorhus
162
+ @license MIT
163
+ */
164
+
165
+
166
+ /* eslint-disable no-unused-vars */
167
+ var getOwnPropertySymbols = Object.getOwnPropertySymbols;
168
+ var hasOwnProperty = Object.prototype.hasOwnProperty;
169
+ var propIsEnumerable = Object.prototype.propertyIsEnumerable;
170
+
171
+ function toObject(val) {
172
+ if (val === null || val === undefined) {
173
+ throw new TypeError('Object.assign cannot be called with null or undefined');
174
+ }
175
+
176
+ return Object(val);
177
+ }
178
+
179
+ function shouldUseNative() {
180
+ try {
181
+ if (!Object.assign) {
182
+ return false;
183
+ }
184
+
185
+ // Detect buggy property enumeration order in older V8 versions.
186
+
187
+ // https://bugs.chromium.org/p/v8/issues/detail?id=4118
188
+ var test1 = new String('abc'); // eslint-disable-line no-new-wrappers
189
+ test1[5] = 'de';
190
+ if (Object.getOwnPropertyNames(test1)[0] === '5') {
191
+ return false;
192
+ }
193
+
194
+ // https://bugs.chromium.org/p/v8/issues/detail?id=3056
195
+ var test2 = {};
196
+ for (var i = 0; i < 10; i++) {
197
+ test2['_' + String.fromCharCode(i)] = i;
198
+ }
199
+ var order2 = Object.getOwnPropertyNames(test2).map(function (n) {
200
+ return test2[n];
201
+ });
202
+ if (order2.join('') !== '0123456789') {
203
+ return false;
204
+ }
205
+
206
+ // https://bugs.chromium.org/p/v8/issues/detail?id=3056
207
+ var test3 = {};
208
+ 'abcdefghijklmnopqrst'.split('').forEach(function (letter) {
209
+ test3[letter] = letter;
210
+ });
211
+ if (Object.keys(Object.assign({}, test3)).join('') !==
212
+ 'abcdefghijklmnopqrst') {
213
+ return false;
214
+ }
215
+
216
+ return true;
217
+ } catch (err) {
218
+ // We don't expect any of the above to throw, but better to be safe.
219
+ return false;
220
+ }
221
+ }
222
+
223
+ module.exports = shouldUseNative() ? Object.assign : function (target, source) {
224
+ var from;
225
+ var to = toObject(target);
226
+ var symbols;
227
+
228
+ for (var s = 1; s < arguments.length; s++) {
229
+ from = Object(arguments[s]);
230
+
231
+ for (var key in from) {
232
+ if (hasOwnProperty.call(from, key)) {
233
+ to[key] = from[key];
234
+ }
235
+ }
236
+
237
+ if (getOwnPropertySymbols) {
238
+ symbols = getOwnPropertySymbols(from);
239
+ for (var i = 0; i < symbols.length; i++) {
240
+ if (propIsEnumerable.call(from, symbols[i])) {
241
+ to[symbols[i]] = from[symbols[i]];
242
+ }
243
+ }
244
+ }
245
+ }
246
+
247
+ return to;
248
+ };
249
+
250
+
251
+ /***/ }),
252
+
253
+ /***/ 75251:
254
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
255
+
256
+ var __webpack_unused_export__;
257
+ /** @license React v17.0.2
258
+ * react-jsx-runtime.production.min.js
259
+ *
260
+ * Copyright (c) Facebook, Inc. and its affiliates.
261
+ *
262
+ * This source code is licensed under the MIT license found in the
263
+ * LICENSE file in the root directory of this source tree.
264
+ */
265
+ __webpack_require__(27418);var f=__webpack_require__(8156),g=60103;__webpack_unused_export__=60107;if("function"===typeof Symbol&&Symbol.for){var h=Symbol.for;g=h("react.element");__webpack_unused_export__=h("react.fragment")}var m=f.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,n=Object.prototype.hasOwnProperty,p={key:!0,ref:!0,__self:!0,__source:!0};
266
+ function q(c,a,k){var b,d={},e=null,l=null;void 0!==k&&(e=""+k);void 0!==a.key&&(e=""+a.key);void 0!==a.ref&&(l=a.ref);for(b in a)n.call(a,b)&&!p.hasOwnProperty(b)&&(d[b]=a[b]);if(c&&c.defaultProps)for(b in a=c.defaultProps,a)void 0===d[b]&&(d[b]=a[b]);return{$$typeof:g,type:c,key:e,ref:l,props:d,_owner:m.current}}exports.jsx=q;__webpack_unused_export__=q;
267
+
268
+
269
+ /***/ }),
270
+
271
+ /***/ 85893:
272
+ /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
273
+
274
+
275
+
276
+ if (true) {
277
+ module.exports = __webpack_require__(75251);
278
+ } else {}
279
+
280
+
281
+ /***/ }),
282
+
283
+ /***/ 93379:
284
+ /***/ ((module) => {
285
+
286
+
287
+
288
+ var stylesInDOM = [];
289
+
290
+ function getIndexByIdentifier(identifier) {
291
+ var result = -1;
292
+
293
+ for (var i = 0; i < stylesInDOM.length; i++) {
294
+ if (stylesInDOM[i].identifier === identifier) {
295
+ result = i;
296
+ break;
297
+ }
298
+ }
299
+
300
+ return result;
301
+ }
302
+
303
+ function modulesToDom(list, options) {
304
+ var idCountMap = {};
305
+ var identifiers = [];
306
+
307
+ for (var i = 0; i < list.length; i++) {
308
+ var item = list[i];
309
+ var id = options.base ? item[0] + options.base : item[0];
310
+ var count = idCountMap[id] || 0;
311
+ var identifier = "".concat(id, " ").concat(count);
312
+ idCountMap[id] = count + 1;
313
+ var indexByIdentifier = getIndexByIdentifier(identifier);
314
+ var obj = {
315
+ css: item[1],
316
+ media: item[2],
317
+ sourceMap: item[3],
318
+ supports: item[4],
319
+ layer: item[5]
320
+ };
321
+
322
+ if (indexByIdentifier !== -1) {
323
+ stylesInDOM[indexByIdentifier].references++;
324
+ stylesInDOM[indexByIdentifier].updater(obj);
325
+ } else {
326
+ var updater = addElementStyle(obj, options);
327
+ options.byIndex = i;
328
+ stylesInDOM.splice(i, 0, {
329
+ identifier: identifier,
330
+ updater: updater,
331
+ references: 1
332
+ });
333
+ }
334
+
335
+ identifiers.push(identifier);
336
+ }
337
+
338
+ return identifiers;
339
+ }
340
+
341
+ function addElementStyle(obj, options) {
342
+ var api = options.domAPI(options);
343
+ api.update(obj);
344
+
345
+ var updater = function updater(newObj) {
346
+ if (newObj) {
347
+ if (newObj.css === obj.css && newObj.media === obj.media && newObj.sourceMap === obj.sourceMap && newObj.supports === obj.supports && newObj.layer === obj.layer) {
348
+ return;
349
+ }
350
+
351
+ api.update(obj = newObj);
352
+ } else {
353
+ api.remove();
354
+ }
355
+ };
356
+
357
+ return updater;
358
+ }
359
+
360
+ module.exports = function (list, options) {
361
+ options = options || {};
362
+ list = list || [];
363
+ var lastIdentifiers = modulesToDom(list, options);
364
+ return function update(newList) {
365
+ newList = newList || [];
366
+
367
+ for (var i = 0; i < lastIdentifiers.length; i++) {
368
+ var identifier = lastIdentifiers[i];
369
+ var index = getIndexByIdentifier(identifier);
370
+ stylesInDOM[index].references--;
371
+ }
372
+
373
+ var newLastIdentifiers = modulesToDom(newList, options);
374
+
375
+ for (var _i = 0; _i < lastIdentifiers.length; _i++) {
376
+ var _identifier = lastIdentifiers[_i];
377
+
378
+ var _index = getIndexByIdentifier(_identifier);
379
+
380
+ if (stylesInDOM[_index].references === 0) {
381
+ stylesInDOM[_index].updater();
382
+
383
+ stylesInDOM.splice(_index, 1);
384
+ }
385
+ }
386
+
387
+ lastIdentifiers = newLastIdentifiers;
388
+ };
389
+ };
390
+
391
+ /***/ }),
392
+
393
+ /***/ 90569:
394
+ /***/ ((module) => {
395
+
396
+
397
+
398
+ var memo = {};
399
+ /* istanbul ignore next */
400
+
401
+ function getTarget(target) {
402
+ if (typeof memo[target] === "undefined") {
403
+ var styleTarget = document.querySelector(target); // Special case to return head of iframe instead of iframe itself
404
+
405
+ if (window.HTMLIFrameElement && styleTarget instanceof window.HTMLIFrameElement) {
406
+ try {
407
+ // This will throw an exception if access to iframe is blocked
408
+ // due to cross-origin restrictions
409
+ styleTarget = styleTarget.contentDocument.head;
410
+ } catch (e) {
411
+ // istanbul ignore next
412
+ styleTarget = null;
413
+ }
414
+ }
415
+
416
+ memo[target] = styleTarget;
417
+ }
418
+
419
+ return memo[target];
420
+ }
421
+ /* istanbul ignore next */
422
+
423
+
424
+ function insertBySelector(insert, style) {
425
+ var target = getTarget(insert);
426
+
427
+ if (!target) {
428
+ throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");
429
+ }
430
+
431
+ target.appendChild(style);
432
+ }
433
+
434
+ module.exports = insertBySelector;
435
+
436
+ /***/ }),
437
+
438
+ /***/ 19216:
439
+ /***/ ((module) => {
440
+
441
+
442
+
443
+ /* istanbul ignore next */
444
+ function insertStyleElement(options) {
445
+ var element = document.createElement("style");
446
+ options.setAttributes(element, options.attributes);
447
+ options.insert(element, options.options);
448
+ return element;
449
+ }
450
+
451
+ module.exports = insertStyleElement;
452
+
453
+ /***/ }),
454
+
455
+ /***/ 3565:
456
+ /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
457
+
458
+
459
+
460
+ /* istanbul ignore next */
461
+ function setAttributesWithoutAttributes(styleElement) {
462
+ var nonce = true ? __webpack_require__.nc : 0;
463
+
464
+ if (nonce) {
465
+ styleElement.setAttribute("nonce", nonce);
466
+ }
467
+ }
468
+
469
+ module.exports = setAttributesWithoutAttributes;
470
+
471
+ /***/ }),
472
+
473
+ /***/ 7795:
474
+ /***/ ((module) => {
475
+
476
+
477
+
478
+ /* istanbul ignore next */
479
+ function apply(styleElement, options, obj) {
480
+ var css = "";
481
+
482
+ if (obj.supports) {
483
+ css += "@supports (".concat(obj.supports, ") {");
484
+ }
485
+
486
+ if (obj.media) {
487
+ css += "@media ".concat(obj.media, " {");
488
+ }
489
+
490
+ var needLayer = typeof obj.layer !== "undefined";
491
+
492
+ if (needLayer) {
493
+ css += "@layer".concat(obj.layer.length > 0 ? " ".concat(obj.layer) : "", " {");
494
+ }
495
+
496
+ css += obj.css;
497
+
498
+ if (needLayer) {
499
+ css += "}";
500
+ }
501
+
502
+ if (obj.media) {
503
+ css += "}";
504
+ }
505
+
506
+ if (obj.supports) {
507
+ css += "}";
508
+ }
509
+
510
+ var sourceMap = obj.sourceMap;
511
+
512
+ if (sourceMap && typeof btoa !== "undefined") {
513
+ css += "\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(sourceMap)))), " */");
514
+ } // For old IE
515
+
516
+ /* istanbul ignore if */
517
+
518
+
519
+ options.styleTagTransform(css, styleElement, options.options);
520
+ }
521
+
522
+ function removeStyleElement(styleElement) {
523
+ // istanbul ignore if
524
+ if (styleElement.parentNode === null) {
525
+ return false;
526
+ }
527
+
528
+ styleElement.parentNode.removeChild(styleElement);
529
+ }
530
+ /* istanbul ignore next */
531
+
532
+
533
+ function domAPI(options) {
534
+ var styleElement = options.insertStyleElement(options);
535
+ return {
536
+ update: function update(obj) {
537
+ apply(styleElement, options, obj);
538
+ },
539
+ remove: function remove() {
540
+ removeStyleElement(styleElement);
541
+ }
542
+ };
543
+ }
544
+
545
+ module.exports = domAPI;
546
+
547
+ /***/ }),
548
+
549
+ /***/ 44589:
550
+ /***/ ((module) => {
551
+
552
+
553
+
554
+ /* istanbul ignore next */
555
+ function styleTagTransform(css, styleElement) {
556
+ if (styleElement.styleSheet) {
557
+ styleElement.styleSheet.cssText = css;
558
+ } else {
559
+ while (styleElement.firstChild) {
560
+ styleElement.removeChild(styleElement.firstChild);
561
+ }
562
+
563
+ styleElement.appendChild(document.createTextNode(css));
564
+ }
565
+ }
566
+
567
+ module.exports = styleTagTransform;
568
+
569
+ /***/ }),
570
+
571
+ /***/ 8156:
572
+ /***/ ((module) => {
573
+
574
+ module.exports = __WEBPACK_EXTERNAL_MODULE__8156__;
575
+
576
+ /***/ })
577
+
578
+ /******/ });
579
+ /************************************************************************/
580
+ /******/ // The module cache
581
+ /******/ var __webpack_module_cache__ = {};
582
+ /******/
583
+ /******/ // The require function
584
+ /******/ function __webpack_require__(moduleId) {
585
+ /******/ // Check if module is in cache
586
+ /******/ var cachedModule = __webpack_module_cache__[moduleId];
587
+ /******/ if (cachedModule !== undefined) {
588
+ /******/ return cachedModule.exports;
589
+ /******/ }
590
+ /******/ // Create a new module (and put it into the cache)
591
+ /******/ var module = __webpack_module_cache__[moduleId] = {
592
+ /******/ id: moduleId,
593
+ /******/ // no module.loaded needed
594
+ /******/ exports: {}
595
+ /******/ };
596
+ /******/
597
+ /******/ // Execute the module function
598
+ /******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
599
+ /******/
600
+ /******/ // Return the exports of the module
601
+ /******/ return module.exports;
602
+ /******/ }
603
+ /******/
604
+ /************************************************************************/
605
+ /******/ /* webpack/runtime/compat get default export */
606
+ /******/ (() => {
607
+ /******/ // getDefaultExport function for compatibility with non-harmony modules
608
+ /******/ __webpack_require__.n = (module) => {
609
+ /******/ var getter = module && module.__esModule ?
610
+ /******/ () => (module['default']) :
611
+ /******/ () => (module);
612
+ /******/ __webpack_require__.d(getter, { a: getter });
613
+ /******/ return getter;
614
+ /******/ };
615
+ /******/ })();
616
+ /******/
617
+ /******/ /* webpack/runtime/define property getters */
618
+ /******/ (() => {
619
+ /******/ // define getter functions for harmony exports
620
+ /******/ __webpack_require__.d = (exports, definition) => {
621
+ /******/ for(var key in definition) {
622
+ /******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
623
+ /******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
624
+ /******/ }
625
+ /******/ }
626
+ /******/ };
627
+ /******/ })();
628
+ /******/
629
+ /******/ /* webpack/runtime/hasOwnProperty shorthand */
630
+ /******/ (() => {
631
+ /******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
632
+ /******/ })();
633
+ /******/
634
+ /************************************************************************/
635
+ var __webpack_exports__ = {};
636
+ // This entry need to be wrapped in an IIFE because it need to be isolated against other modules in the chunk.
637
+ (() => {
638
+
639
+ // EXPORTS
640
+ __webpack_require__.d(__webpack_exports__, {
641
+ "default": () => (/* binding */ components_ListOneBoshbpm_0)
642
+ });
643
+
644
+ // EXTERNAL MODULE: ./node_modules/react/jsx-runtime.js
645
+ var jsx_runtime = __webpack_require__(85893);
646
+ // EXTERNAL MODULE: ./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js
647
+ var injectStylesIntoStyleTag = __webpack_require__(93379);
648
+ var injectStylesIntoStyleTag_default = /*#__PURE__*/__webpack_require__.n(injectStylesIntoStyleTag);
649
+ // EXTERNAL MODULE: ./node_modules/style-loader/dist/runtime/styleDomAPI.js
650
+ var styleDomAPI = __webpack_require__(7795);
651
+ var styleDomAPI_default = /*#__PURE__*/__webpack_require__.n(styleDomAPI);
652
+ // EXTERNAL MODULE: ./node_modules/style-loader/dist/runtime/insertBySelector.js
653
+ var insertBySelector = __webpack_require__(90569);
654
+ var insertBySelector_default = /*#__PURE__*/__webpack_require__.n(insertBySelector);
655
+ // EXTERNAL MODULE: ./node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js
656
+ var setAttributesWithoutAttributes = __webpack_require__(3565);
657
+ var setAttributesWithoutAttributes_default = /*#__PURE__*/__webpack_require__.n(setAttributesWithoutAttributes);
658
+ // EXTERNAL MODULE: ./node_modules/style-loader/dist/runtime/insertStyleElement.js
659
+ var insertStyleElement = __webpack_require__(19216);
660
+ var insertStyleElement_default = /*#__PURE__*/__webpack_require__.n(insertStyleElement);
661
+ // EXTERNAL MODULE: ./node_modules/style-loader/dist/runtime/styleTagTransform.js
662
+ var styleTagTransform = __webpack_require__(44589);
663
+ var styleTagTransform_default = /*#__PURE__*/__webpack_require__.n(styleTagTransform);
664
+ // EXTERNAL MODULE: ./node_modules/css-loader/dist/cjs.js!./components/ListOneBoshbpm.css
665
+ var ListOneBoshbpm = __webpack_require__(70261);
666
+ ;// CONCATENATED MODULE: ./components/ListOneBoshbpm.css
667
+
668
+
669
+
670
+
671
+
672
+
673
+
674
+
675
+
676
+
677
+
678
+ var options = {};
679
+
680
+ options.styleTagTransform = (styleTagTransform_default());
681
+ options.setAttributes = (setAttributesWithoutAttributes_default());
682
+
683
+ options.insert = insertBySelector_default().bind(null, "head");
684
+
685
+ options.domAPI = (styleDomAPI_default());
686
+ options.insertStyleElement = (insertStyleElement_default());
687
+
688
+ var update = injectStylesIntoStyleTag_default()(ListOneBoshbpm/* default */.Z, options);
689
+
690
+
691
+
692
+
693
+ /* harmony default export */ const components_ListOneBoshbpm = (ListOneBoshbpm/* default */.Z && ListOneBoshbpm/* default.locals */.Z.locals ? ListOneBoshbpm/* default.locals */.Z.locals : undefined);
694
+
695
+ ;// CONCATENATED MODULE: ./components/ListOneBoshbpm.tsx
696
+ var __assign = (undefined && undefined.__assign) || function () {
697
+ __assign = Object.assign || function(t) {
698
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
699
+ s = arguments[i];
700
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
701
+ t[p] = s[p];
702
+ }
703
+ return t;
704
+ };
705
+ return __assign.apply(this, arguments);
706
+ };
707
+
708
+ // 该文件为自动生成,请不要修改内容
709
+
710
+ var ListOneBoshbpm_ListOneBoshbpm = function (props) {
711
+ function buttonClass() {
712
+ return props.button == true ? 'bonree-icons-button-ListOneBoshbpm' : '';
713
+ }
714
+ function borderClass() {
715
+ return props.border == true ? 'bonree-icons-border-ListOneBoshbpm' : '';
716
+ }
717
+ function disabledClass() {
718
+ if (props.disabled == true) {
719
+ if (props.border == true) {
720
+ return "bonree-icons-border-disabled-ListOneBoshbpm";
721
+ }
722
+ else {
723
+ return "bonree-icons-disabled-ListOneBoshbpm";
724
+ }
725
+ }
726
+ return '';
727
+ }
728
+ function handleClick() {
729
+ if (props.onClick) {
730
+ props.onClick();
731
+ }
732
+ }
733
+ return ((0,jsx_runtime.jsx)("span", __assign({ className: "bonree-icons-wrapper-ListOneBoshbpm ".concat(buttonClass(), " ").concat(borderClass(), " ").concat(disabledClass(), " ").concat(props.className || ''), onClick: function () { return handleClick(); }, style: props.style }, { children: (0,jsx_runtime.jsx)("svg", __assign({ focusable: "false", width: "1em", height: "1em", fill: "currentColor", viewBox: "0 0 50 18" }, { children: (0,jsx_runtime.jsx)("path", { d: "M2.312 12.225V9.317h.84c.216 0 .414.022.594.067.18.046.336.124.467.237.13.113.235.262.311.447.077.185.115.417.115.696 0 .56-.144.943-.433 1.15-.288.208-.667.311-1.136.311h-.758Zm0-4.261v-2.53h.704c.487 0 .843.095 1.069.284.225.19.338.514.338.974 0 .46-.124.787-.372.981-.248.194-.643.29-1.184.29h-.555ZM.364 4v9.66h3.288c.568 0 1.044-.077 1.427-.23.383-.154.694-.359.933-.616a2.2 2.2 0 0 0 .508-.9c.099-.342.149-.703.149-1.082 0-.65-.158-1.168-.474-1.556-.316-.388-.744-.618-1.285-.69V8.56c.487-.135.852-.39 1.096-.764.243-.374.365-.823.365-1.346 0-.46-.068-.848-.203-1.164a1.87 1.87 0 0 0-.568-.757 2.26 2.26 0 0 0-.873-.406A4.72 4.72 0 0 0 3.625 4H.365Zm9.091 6.02c0-.37.01-.712.028-1.028a3.56 3.56 0 0 1 .128-.812 1.16 1.16 0 0 1 .304-.527c.136-.127.316-.19.542-.19.378 0 .64.199.784.596.145.396.217 1.05.217 1.961s-.072 1.565-.217 1.962c-.144.397-.406.595-.784.595-.226 0-.406-.063-.542-.19a1.16 1.16 0 0 1-.304-.527 3.56 3.56 0 0 1-.128-.812 18.1 18.1 0 0 1-.028-1.028Zm-1.866 0c0 .632.045 1.189.135 1.671.09.483.243.884.46 1.204.216.32.51.555.88.704.369.148.833.218 1.393.21.532 0 .98-.077 1.346-.23.365-.154.66-.39.886-.71.225-.321.388-.72.487-1.198.1-.478.149-1.028.149-1.65 0-.641-.045-1.2-.136-1.678-.09-.478-.243-.88-.46-1.204a1.953 1.953 0 0 0-.879-.724c-.37-.158-.834-.232-1.393-.223-.533 0-.981.083-1.347.25a2.16 2.16 0 0 0-.886.73c-.225.32-.387.72-.487 1.198a8.181 8.181 0 0 0-.148 1.65Zm8.103 1.258h-1.677v.258c0 .351.04.67.121.953.082.284.224.526.427.724.203.198.478.347.825.447.347.099.782.148 1.305.148.397 0 .76-.04 1.09-.121a2.2 2.2 0 0 0 .852-.406c.239-.19.426-.426.561-.71.135-.285.203-.62.203-1.008 0-.55-.122-.986-.365-1.306-.244-.32-.659-.58-1.245-.778L16.666 9.1c-.315-.099-.53-.22-.642-.365a.77.77 0 0 1-.17-.487c0-.262.089-.458.264-.588.176-.131.381-.197.616-.197.307 0 .52.088.643.264.121.176.182.453.182.832h1.678v-.297c0-.659-.203-1.168-.609-1.53-.406-.36-1.033-.54-1.88-.54-.479 0-.887.058-1.225.176a2.354 2.354 0 0 0-.832.473c-.216.198-.374.43-.473.697a2.4 2.4 0 0 0-.15.845c0 .514.132.936.393 1.265.262.33.65.584 1.164.765l1.312.473c.18.072.338.17.473.291.136.122.203.3.203.534 0 .289-.085.505-.257.65-.171.144-.401.216-.69.216-.315 0-.557-.097-.723-.29-.167-.195-.25-.45-.25-.765v-.244ZM20.332 4v9.66H22.2V8.83c0-.803.329-1.204.987-1.204.28 0 .483.074.609.223.126.149.19.413.19.791v5.02h1.866V8.262c0-.731-.16-1.259-.48-1.583-.32-.325-.778-.487-1.373-.487-.82 0-1.412.31-1.772.933H22.2V4h-1.867Zm6.765 0v9.66h1.786v-.772h.027c.207.343.44.582.697.717.257.136.575.203.953.203.767 0 1.33-.293 1.691-.879.361-.586.542-1.556.542-2.909 0-1.353-.18-2.329-.542-2.929-.36-.6-.924-.9-1.69-.9-.352 0-.652.073-.9.217a2.12 2.12 0 0 0-.67.65h-.027V4h-1.867Zm1.867 6.02c0-.793.06-1.39.183-1.792.121-.402.39-.602.805-.602.405 0 .67.2.791.602.122.401.183.999.183 1.792 0 .794-.061 1.391-.183 1.793-.122.401-.386.602-.791.602-.415 0-.684-.2-.805-.602-.122-.402-.183-.999-.183-1.793Zm4.897-3.639V16h1.867v-3.017h.027c.199.289.422.498.67.63.248.13.548.195.9.195.766 0 1.33-.293 1.69-.879.362-.586.542-1.556.542-2.909 0-1.353-.18-2.329-.541-2.929-.361-.6-.925-.9-1.691-.9-.38 0-.697.075-.954.224-.257.149-.49.394-.697.737h-.027v-.77h-1.786Zm1.867 3.64c0-.794.061-1.392.183-1.793.122-.402.39-.602.805-.602.406 0 .67.2.791.602.122.401.183.999.183 1.792 0 .794-.06 1.391-.183 1.793-.121.401-.385.602-.791.602-.415 0-.683-.2-.805-.602-.122-.402-.183-.999-.183-1.793Zm4.898-3.64v7.279h1.867V8.87c0-.433.088-.748.263-.947.176-.198.413-.297.71-.297.262 0 .45.08.562.243.113.163.17.397.17.704v5.087h1.866V8.87c0-.433.088-.748.264-.947.176-.198.413-.297.71-.297.262 0 .449.08.562.243.113.163.169.397.169.704v5.087h1.867V8.37c0-.704-.147-1.243-.44-1.617-.293-.374-.75-.561-1.373-.561-.442 0-.823.097-1.143.29-.32.194-.553.485-.697.873h-.027c-.1-.379-.295-.667-.588-.866-.294-.198-.657-.297-1.09-.297-.405 0-.755.072-1.048.216-.293.144-.557.383-.791.717h-.028v-.744h-1.785Z" }) })) })));
734
+ };
735
+ /* harmony default export */ const components_ListOneBoshbpm_0 = (ListOneBoshbpm_ListOneBoshbpm);
736
+
737
+ })();
738
+
739
+ __webpack_exports__ = __webpack_exports__["default"];
740
+ /******/ return __webpack_exports__;
741
+ /******/ })()
742
+ ;
743
+ });