@vitrosoftware/common-ui-ts 1.1.57 → 1.1.59
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/css/common.css +7 -0
- package/css/std/controls/dropdown-button/dropdown-button.css +1 -1
- package/css/std/controls/label/label.css +12 -0
- package/css/std/controls/lookup-picker/lookup-picker.css +1 -0
- package/css/std/controls/pdf-viewer/pdf-viewer.css +10 -10
- package/css/std/controls/pdf-viewer/viewer.css +0 -5
- package/dist/exceptions/AbortException.d.ts +2 -0
- package/dist/exceptions/impl/AbortExceptionImpl.d.ts +3 -0
- package/dist/index.css +21 -1
- package/dist/index.js +120 -33
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/css/common.css
CHANGED
|
@@ -9,6 +9,13 @@
|
|
|
9
9
|
@import url('@vitrosoftware/common-ui-ts/css/third-party/sweetalert2/sweetalert2.css');
|
|
10
10
|
@import url('@vitrosoftware/common-ui-ts/css/std/controls/pdf-viewer/pdf-viewer.css');
|
|
11
11
|
|
|
12
|
+
.TWMain .TWVLine {
|
|
13
|
+
width: 1px;
|
|
14
|
+
border-left: 1px solid black;
|
|
15
|
+
overflow: hidden;
|
|
16
|
+
cursor: e-resize;
|
|
17
|
+
}
|
|
18
|
+
|
|
12
19
|
:global(.vitro-opacity-low) {
|
|
13
20
|
opacity: .3;
|
|
14
21
|
}
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
position: absolute;
|
|
83
83
|
right: 8px;
|
|
84
84
|
top: -11px;
|
|
85
|
-
background-image: url(data:image/svg+xml,%3Csvg viewBox
|
|
85
|
+
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.31554 1.65838L0.382812 11H15.6249L9.69214 1.65838C8.90651 0.421336 7.10117 0.421335 6.31554 1.65838Z' fill='white'/%3E%3C/svg%3E%0A");
|
|
86
86
|
}
|
|
87
87
|
|
|
88
88
|
.vitro-dropdown-button :global(.dropdown-item) .vitro-icon {
|
|
@@ -11,4 +11,16 @@
|
|
|
11
11
|
.vitro-label .vitro-required {
|
|
12
12
|
color: red;
|
|
13
13
|
margin-left: 2px;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
:global(.vitro-label-grey) {
|
|
17
|
+
width: 100%;
|
|
18
|
+
max-width: unset;
|
|
19
|
+
background-color: #F7F9FC;
|
|
20
|
+
font-family: 'InterMedium';
|
|
21
|
+
font-size: 14px;
|
|
22
|
+
line-height: 16px;
|
|
23
|
+
padding: 12px 8px;
|
|
24
|
+
display: flex;
|
|
25
|
+
align-items: center;
|
|
14
26
|
}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
@import url('@vitrosoftware/common-ui-ts/css/
|
|
2
|
-
@import url('@vitrosoftware/common-ui-ts/css/
|
|
3
|
-
@import url('@vitrosoftware/common-ui-ts/css/
|
|
4
|
-
@import url('@vitrosoftware/common-ui-ts/css/
|
|
5
|
-
@import url('@vitrosoftware/common-ui-ts/css/
|
|
6
|
-
@import url('@vitrosoftware/common-ui-ts/css/
|
|
7
|
-
@import url('@vitrosoftware/common-ui-ts/css/
|
|
8
|
-
@import url('@vitrosoftware/common-ui-ts/css/
|
|
9
|
-
@import url('@vitrosoftware/common-ui-ts/css/
|
|
10
|
-
@import url('@vitrosoftware/common-ui-ts/css/
|
|
1
|
+
@import url('@vitrosoftware/common-ui-ts/css/std/controls/pdf-viewer/viewer.css');
|
|
2
|
+
@import url('@vitrosoftware/common-ui-ts/css/std/controls/pdf-viewer/sketchpad.css');
|
|
3
|
+
@import url('@vitrosoftware/common-ui-ts/css/std/controls/pdf-viewer/zoom.css');
|
|
4
|
+
@import url('@vitrosoftware/common-ui-ts/css/std/controls/pdf-viewer/form.css');
|
|
5
|
+
@import url('@vitrosoftware/common-ui-ts/css/std/controls/pdf-viewer/compare-side-by-side.css');
|
|
6
|
+
@import url('@vitrosoftware/common-ui-ts/css/std/controls/pdf-viewer/compare.css');
|
|
7
|
+
@import url('@vitrosoftware/common-ui-ts/css/std/controls/pdf-viewer/custom.css');
|
|
8
|
+
@import url('@vitrosoftware/common-ui-ts/css/std/controls/pdf-viewer/viewer-theme.css');
|
|
9
|
+
@import url('@vitrosoftware/common-ui-ts/css/std/controls/pdf-viewer/print.css');
|
|
10
|
+
@import url('@vitrosoftware/common-ui-ts/css/std/controls/pdf-viewer/debugger.css');
|
|
11
11
|
|
|
12
12
|
html[dir='ltr'] body {
|
|
13
13
|
background-color: #F5F6FA;
|
package/dist/index.css
CHANGED
|
@@ -9,6 +9,13 @@
|
|
|
9
9
|
@import url('@vitrosoftware/common-ui-ts/css/third-party/sweetalert2/sweetalert2.css');
|
|
10
10
|
@import url('@vitrosoftware/common-ui-ts/css/std/controls/pdf-viewer/pdf-viewer.css');
|
|
11
11
|
|
|
12
|
+
._common_TWMain_1UIskzy ._common_TWVLine_BnM2Z21 {
|
|
13
|
+
width: 1px;
|
|
14
|
+
border-left: 1px solid black;
|
|
15
|
+
overflow: hidden;
|
|
16
|
+
cursor: e-resize;
|
|
17
|
+
}
|
|
18
|
+
|
|
12
19
|
.vitro-opacity-low {
|
|
13
20
|
opacity: .3;
|
|
14
21
|
}
|
|
@@ -1535,7 +1542,7 @@
|
|
|
1535
1542
|
position: absolute;
|
|
1536
1543
|
right: 8px;
|
|
1537
1544
|
top: -11px;
|
|
1538
|
-
background-image: url(data:image/svg+xml,%3Csvg viewBox
|
|
1545
|
+
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.31554 1.65838L0.382812 11H15.6249L9.69214 1.65838C8.90651 0.421336 7.10117 0.421335 6.31554 1.65838Z' fill='white'/%3E%3C/svg%3E%0A");
|
|
1539
1546
|
}
|
|
1540
1547
|
|
|
1541
1548
|
._dropdown-button_vitro-dropdown-button_1myvkhB .dropdown-item ._dropdown-button_vitro-icon_2NCEoeb {
|
|
@@ -1764,6 +1771,18 @@
|
|
|
1764
1771
|
._label_vitro-label_it8WNUE ._label_vitro-required_2-bSGif {
|
|
1765
1772
|
color: red;
|
|
1766
1773
|
margin-left: 2px;
|
|
1774
|
+
}
|
|
1775
|
+
|
|
1776
|
+
.vitro-label-grey {
|
|
1777
|
+
width: 100%;
|
|
1778
|
+
max-width: unset;
|
|
1779
|
+
background-color: #F7F9FC;
|
|
1780
|
+
font-family: 'InterMedium';
|
|
1781
|
+
font-size: 14px;
|
|
1782
|
+
line-height: 16px;
|
|
1783
|
+
padding: 12px 8px;
|
|
1784
|
+
display: flex;
|
|
1785
|
+
align-items: center;
|
|
1767
1786
|
}
|
|
1768
1787
|
|
|
1769
1788
|
._input_vitro-control_1DmPFkF {
|
|
@@ -3290,6 +3309,7 @@
|
|
|
3290
3309
|
._lookup-picker_vitro-button-close_3_Qndrj,
|
|
3291
3310
|
._lookup-picker_vitro-button-collapse-up_3i0OJub,
|
|
3292
3311
|
._lookup-picker_vitro-button-collapse-bottom_3o0Pl83 {
|
|
3312
|
+
cursor: pointer;
|
|
3293
3313
|
width: 24px;
|
|
3294
3314
|
height: 24px;
|
|
3295
3315
|
margin-left: 4px;
|
package/dist/index.js
CHANGED
|
@@ -20443,6 +20443,79 @@ function _extends() {
|
|
|
20443
20443
|
};
|
|
20444
20444
|
return _extends.apply(this, arguments);
|
|
20445
20445
|
}
|
|
20446
|
+
function _inheritsLoose(subClass, superClass) {
|
|
20447
|
+
subClass.prototype = Object.create(superClass.prototype);
|
|
20448
|
+
subClass.prototype.constructor = subClass;
|
|
20449
|
+
_setPrototypeOf(subClass, superClass);
|
|
20450
|
+
}
|
|
20451
|
+
function _getPrototypeOf(o) {
|
|
20452
|
+
_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) {
|
|
20453
|
+
return o.__proto__ || Object.getPrototypeOf(o);
|
|
20454
|
+
};
|
|
20455
|
+
return _getPrototypeOf(o);
|
|
20456
|
+
}
|
|
20457
|
+
function _setPrototypeOf(o, p) {
|
|
20458
|
+
_setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) {
|
|
20459
|
+
o.__proto__ = p;
|
|
20460
|
+
return o;
|
|
20461
|
+
};
|
|
20462
|
+
return _setPrototypeOf(o, p);
|
|
20463
|
+
}
|
|
20464
|
+
function _isNativeReflectConstruct() {
|
|
20465
|
+
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
|
20466
|
+
if (Reflect.construct.sham) return false;
|
|
20467
|
+
if (typeof Proxy === "function") return true;
|
|
20468
|
+
try {
|
|
20469
|
+
Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {}));
|
|
20470
|
+
return true;
|
|
20471
|
+
} catch (e) {
|
|
20472
|
+
return false;
|
|
20473
|
+
}
|
|
20474
|
+
}
|
|
20475
|
+
function _construct(Parent, args, Class) {
|
|
20476
|
+
if (_isNativeReflectConstruct()) {
|
|
20477
|
+
_construct = Reflect.construct.bind();
|
|
20478
|
+
} else {
|
|
20479
|
+
_construct = function _construct(Parent, args, Class) {
|
|
20480
|
+
var a = [null];
|
|
20481
|
+
a.push.apply(a, args);
|
|
20482
|
+
var Constructor = Function.bind.apply(Parent, a);
|
|
20483
|
+
var instance = new Constructor();
|
|
20484
|
+
if (Class) _setPrototypeOf(instance, Class.prototype);
|
|
20485
|
+
return instance;
|
|
20486
|
+
};
|
|
20487
|
+
}
|
|
20488
|
+
return _construct.apply(null, arguments);
|
|
20489
|
+
}
|
|
20490
|
+
function _isNativeFunction(fn) {
|
|
20491
|
+
return Function.toString.call(fn).indexOf("[native code]") !== -1;
|
|
20492
|
+
}
|
|
20493
|
+
function _wrapNativeSuper(Class) {
|
|
20494
|
+
var _cache = typeof Map === "function" ? new Map() : undefined;
|
|
20495
|
+
_wrapNativeSuper = function _wrapNativeSuper(Class) {
|
|
20496
|
+
if (Class === null || !_isNativeFunction(Class)) return Class;
|
|
20497
|
+
if (typeof Class !== "function") {
|
|
20498
|
+
throw new TypeError("Super expression must either be null or a function");
|
|
20499
|
+
}
|
|
20500
|
+
if (typeof _cache !== "undefined") {
|
|
20501
|
+
if (_cache.has(Class)) return _cache.get(Class);
|
|
20502
|
+
_cache.set(Class, Wrapper);
|
|
20503
|
+
}
|
|
20504
|
+
function Wrapper() {
|
|
20505
|
+
return _construct(Class, arguments, _getPrototypeOf(this).constructor);
|
|
20506
|
+
}
|
|
20507
|
+
Wrapper.prototype = Object.create(Class.prototype, {
|
|
20508
|
+
constructor: {
|
|
20509
|
+
value: Wrapper,
|
|
20510
|
+
enumerable: false,
|
|
20511
|
+
writable: true,
|
|
20512
|
+
configurable: true
|
|
20513
|
+
}
|
|
20514
|
+
});
|
|
20515
|
+
return _setPrototypeOf(Wrapper, Class);
|
|
20516
|
+
};
|
|
20517
|
+
return _wrapNativeSuper(Class);
|
|
20518
|
+
}
|
|
20446
20519
|
function _objectWithoutPropertiesLoose(source, excluded) {
|
|
20447
20520
|
if (source == null) return {};
|
|
20448
20521
|
var target = {};
|
|
@@ -22061,18 +22134,18 @@ function useUncontrolled(props, config) {
|
|
|
22061
22134
|
}, props);
|
|
22062
22135
|
}
|
|
22063
22136
|
|
|
22064
|
-
function _setPrototypeOf(o, p) {
|
|
22065
|
-
_setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) {
|
|
22137
|
+
function _setPrototypeOf$1(o, p) {
|
|
22138
|
+
_setPrototypeOf$1 = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) {
|
|
22066
22139
|
o.__proto__ = p;
|
|
22067
22140
|
return o;
|
|
22068
22141
|
};
|
|
22069
|
-
return _setPrototypeOf(o, p);
|
|
22142
|
+
return _setPrototypeOf$1(o, p);
|
|
22070
22143
|
}
|
|
22071
22144
|
|
|
22072
|
-
function _inheritsLoose(subClass, superClass) {
|
|
22145
|
+
function _inheritsLoose$1(subClass, superClass) {
|
|
22073
22146
|
subClass.prototype = Object.create(superClass.prototype);
|
|
22074
22147
|
subClass.prototype.constructor = subClass;
|
|
22075
|
-
_setPrototypeOf(subClass, superClass);
|
|
22148
|
+
_setPrototypeOf$1(subClass, superClass);
|
|
22076
22149
|
}
|
|
22077
22150
|
|
|
22078
22151
|
const DEFAULT_BREAKPOINTS = ['xxl', 'xl', 'lg', 'md', 'sm', 'xs'];
|
|
@@ -54245,7 +54318,7 @@ var EXITING = 'exiting';
|
|
|
54245
54318
|
*/
|
|
54246
54319
|
|
|
54247
54320
|
var Transition = /*#__PURE__*/function (_React$Component) {
|
|
54248
|
-
_inheritsLoose(Transition, _React$Component);
|
|
54321
|
+
_inheritsLoose$1(Transition, _React$Component);
|
|
54249
54322
|
|
|
54250
54323
|
function Transition(props, context) {
|
|
54251
54324
|
var _this;
|
|
@@ -59826,6 +59899,14 @@ var ActionInfo = function ActionInfo(props) {
|
|
|
59826
59899
|
})));
|
|
59827
59900
|
};
|
|
59828
59901
|
|
|
59902
|
+
var AbortExceptionImpl = /*#__PURE__*/function (_Error) {
|
|
59903
|
+
_inheritsLoose(AbortExceptionImpl, _Error);
|
|
59904
|
+
function AbortExceptionImpl() {
|
|
59905
|
+
return _Error.apply(this, arguments) || this;
|
|
59906
|
+
}
|
|
59907
|
+
return AbortExceptionImpl;
|
|
59908
|
+
}( /*#__PURE__*/_wrapNativeSuper(Error));
|
|
59909
|
+
|
|
59829
59910
|
var actionMap = {
|
|
59830
59911
|
before: 0,
|
|
59831
59912
|
progress: 1,
|
|
@@ -60218,6 +60299,12 @@ var ActionHandler = function ActionHandler(props) {
|
|
|
60218
60299
|
cancellationToken.cancel = true;
|
|
60219
60300
|
}
|
|
60220
60301
|
};
|
|
60302
|
+
var onCancel = function onCancel() {
|
|
60303
|
+
if (props.onAfterAction) {
|
|
60304
|
+
props.onAfterAction(new AbortExceptionImpl(), [], []);
|
|
60305
|
+
}
|
|
60306
|
+
hideDialog();
|
|
60307
|
+
};
|
|
60221
60308
|
var getSelectedItemText = function getSelectedItemText() {
|
|
60222
60309
|
if (data.itemCount === 1 && data.itemList[0].name) {
|
|
60223
60310
|
return localeService.create(LOCALE$1.ITEM_NAME, {
|
|
@@ -60263,7 +60350,7 @@ var ActionHandler = function ActionHandler(props) {
|
|
|
60263
60350
|
className: styles$7['vitro-progress-bar'],
|
|
60264
60351
|
ref: progressBarRef
|
|
60265
60352
|
})), showConfirmButtonGroup && React__default.createElement(commonUi.ButtonGroup, null, React__default.createElement(Button$2, {
|
|
60266
|
-
onClick:
|
|
60353
|
+
onClick: onCancel,
|
|
60267
60354
|
text: localeService.create(LOCALE$1.CANCEL) || props.labelNo || CTRL.EMPTY,
|
|
60268
60355
|
className: styles$7['vitro-button-cancel']
|
|
60269
60356
|
}), React__default.createElement(Button$2, {
|
|
@@ -60945,7 +61032,7 @@ var styles$j = {"vitro-issue-tile":"_issue-tile_vitro-issue-tile_2D7E9Y-","vitro
|
|
|
60945
61032
|
var IssueTile = function IssueTile(props) {
|
|
60946
61033
|
return React__default.createElement("div", {
|
|
60947
61034
|
id: 'vitro-issue-tile-' + props.id,
|
|
60948
|
-
className: styles$j['vitro-issue-tile'] + (props.isActive ? CTRL.SPACE +
|
|
61035
|
+
className: styles$j['vitro-issue-tile'] + (props.isActive ? CTRL.SPACE + 'vitro-active' : CTRL.EMPTY),
|
|
60949
61036
|
onClick: props.onClick
|
|
60950
61037
|
}, React__default.createElement(IssueTileHeader, {
|
|
60951
61038
|
id: props.id,
|
|
@@ -62806,13 +62893,13 @@ function _objectWithoutPropertiesLoose$b(source, excluded) { if (source == null)
|
|
|
62806
62893
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
62807
62894
|
function _defineProperties$1(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
62808
62895
|
function _createClass$1(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties$1(Constructor.prototype, protoProps); if (staticProps) _defineProperties$1(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
62809
|
-
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf$
|
|
62810
|
-
function _setPrototypeOf$
|
|
62811
|
-
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
62896
|
+
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf$2(subClass, superClass); }
|
|
62897
|
+
function _setPrototypeOf$2(o, p) { _setPrototypeOf$2 = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf$2(o, p); }
|
|
62898
|
+
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$1(); return function _createSuperInternal() { var Super = _getPrototypeOf$1(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf$1(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
62812
62899
|
function _possibleConstructorReturn(self, call) { if (call && (_typeof$1(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
|
|
62813
62900
|
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
62814
|
-
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
62815
|
-
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
|
62901
|
+
function _isNativeReflectConstruct$1() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
62902
|
+
function _getPrototypeOf$1(o) { _getPrototypeOf$1 = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf$1(o); }
|
|
62816
62903
|
var propTypes$4 = {
|
|
62817
62904
|
a11y: propTypes.bool,
|
|
62818
62905
|
disabled: propTypes.bool,
|
|
@@ -63124,13 +63211,13 @@ function _objectWithoutPropertiesLoose$c(source, excluded) { if (source == null)
|
|
|
63124
63211
|
function _classCallCheck$1(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
63125
63212
|
function _defineProperties$2(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
63126
63213
|
function _createClass$2(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties$2(Constructor.prototype, protoProps); if (staticProps) _defineProperties$2(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
63127
|
-
function _inherits$1(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf$
|
|
63128
|
-
function _setPrototypeOf$
|
|
63129
|
-
function _createSuper$1(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$
|
|
63214
|
+
function _inherits$1(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf$3(subClass, superClass); }
|
|
63215
|
+
function _setPrototypeOf$3(o, p) { _setPrototypeOf$3 = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf$3(o, p); }
|
|
63216
|
+
function _createSuper$1(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$2(); return function _createSuperInternal() { var Super = _getPrototypeOf$2(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf$2(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn$1(this, result); }; }
|
|
63130
63217
|
function _possibleConstructorReturn$1(self, call) { if (call && (_typeof$2(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized$1(self); }
|
|
63131
63218
|
function _assertThisInitialized$1(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
63132
|
-
function _isNativeReflectConstruct$
|
|
63133
|
-
function _getPrototypeOf$
|
|
63219
|
+
function _isNativeReflectConstruct$2() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
63220
|
+
function _getPrototypeOf$2(o) { _getPrototypeOf$2 = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf$2(o); }
|
|
63134
63221
|
var propTypes$5 = {
|
|
63135
63222
|
children: propTypes.node,
|
|
63136
63223
|
active: propTypes.bool,
|
|
@@ -63262,13 +63349,13 @@ function _objectWithoutPropertiesLoose$d(source, excluded) { if (source == null)
|
|
|
63262
63349
|
function _classCallCheck$2(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
63263
63350
|
function _defineProperties$3(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
63264
63351
|
function _createClass$3(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties$3(Constructor.prototype, protoProps); if (staticProps) _defineProperties$3(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
63265
|
-
function _inherits$2(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf$
|
|
63266
|
-
function _setPrototypeOf$
|
|
63267
|
-
function _createSuper$2(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$
|
|
63352
|
+
function _inherits$2(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf$4(subClass, superClass); }
|
|
63353
|
+
function _setPrototypeOf$4(o, p) { _setPrototypeOf$4 = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf$4(o, p); }
|
|
63354
|
+
function _createSuper$2(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$3(); return function _createSuperInternal() { var Super = _getPrototypeOf$3(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf$3(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn$2(this, result); }; }
|
|
63268
63355
|
function _possibleConstructorReturn$2(self, call) { if (call && (_typeof$3(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized$2(self); }
|
|
63269
63356
|
function _assertThisInitialized$2(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
63270
|
-
function _isNativeReflectConstruct$
|
|
63271
|
-
function _getPrototypeOf$
|
|
63357
|
+
function _isNativeReflectConstruct$3() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
63358
|
+
function _getPrototypeOf$3(o) { _getPrototypeOf$3 = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf$3(o); }
|
|
63272
63359
|
var propTypes$6 = {
|
|
63273
63360
|
tag: tagPropType,
|
|
63274
63361
|
children: propTypes.node.isRequired,
|
|
@@ -63408,13 +63495,13 @@ function _objectWithoutPropertiesLoose$e(source, excluded) { if (source == null)
|
|
|
63408
63495
|
function _classCallCheck$3(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
63409
63496
|
function _defineProperties$4(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
63410
63497
|
function _createClass$4(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties$4(Constructor.prototype, protoProps); if (staticProps) _defineProperties$4(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
63411
|
-
function _inherits$3(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf$
|
|
63412
|
-
function _setPrototypeOf$
|
|
63413
|
-
function _createSuper$3(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$
|
|
63498
|
+
function _inherits$3(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf$5(subClass, superClass); }
|
|
63499
|
+
function _setPrototypeOf$5(o, p) { _setPrototypeOf$5 = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf$5(o, p); }
|
|
63500
|
+
function _createSuper$3(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$4(); return function _createSuperInternal() { var Super = _getPrototypeOf$4(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf$4(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn$3(this, result); }; }
|
|
63414
63501
|
function _possibleConstructorReturn$3(self, call) { if (call && (_typeof$4(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized$3(self); }
|
|
63415
63502
|
function _assertThisInitialized$3(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
63416
|
-
function _isNativeReflectConstruct$
|
|
63417
|
-
function _getPrototypeOf$
|
|
63503
|
+
function _isNativeReflectConstruct$4() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
63504
|
+
function _getPrototypeOf$4(o) { _getPrototypeOf$4 = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf$4(o); }
|
|
63418
63505
|
var propTypes$7 = {
|
|
63419
63506
|
caret: propTypes.bool,
|
|
63420
63507
|
color: propTypes.string,
|
|
@@ -63540,13 +63627,13 @@ function _extends$8() { _extends$8 = Object.assign ? Object.assign.bind() : func
|
|
|
63540
63627
|
function _classCallCheck$4(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
63541
63628
|
function _defineProperties$5(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
|
63542
63629
|
function _createClass$5(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties$5(Constructor.prototype, protoProps); if (staticProps) _defineProperties$5(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
63543
|
-
function _inherits$4(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf$
|
|
63544
|
-
function _setPrototypeOf$
|
|
63545
|
-
function _createSuper$4(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$
|
|
63630
|
+
function _inherits$4(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf$6(subClass, superClass); }
|
|
63631
|
+
function _setPrototypeOf$6(o, p) { _setPrototypeOf$6 = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf$6(o, p); }
|
|
63632
|
+
function _createSuper$4(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct$5(); return function _createSuperInternal() { var Super = _getPrototypeOf$5(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf$5(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn$4(this, result); }; }
|
|
63546
63633
|
function _possibleConstructorReturn$4(self, call) { if (call && (_typeof$5(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized$4(self); }
|
|
63547
63634
|
function _assertThisInitialized$4(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
63548
|
-
function _isNativeReflectConstruct$
|
|
63549
|
-
function _getPrototypeOf$
|
|
63635
|
+
function _isNativeReflectConstruct$5() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
63636
|
+
function _getPrototypeOf$5(o) { _getPrototypeOf$5 = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf$5(o); }
|
|
63550
63637
|
var omitKeys = ['defaultOpen'];
|
|
63551
63638
|
var UncontrolledDropdown = /*#__PURE__*/function (_Component) {
|
|
63552
63639
|
_inherits$4(UncontrolledDropdown, _Component);
|