@plesk/ui-library 3.28.1 → 3.29.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/cjs/components/AutoClosable/AutoClosable.js +6 -2
- package/cjs/components/Button/Button.js +13 -6
- package/cjs/components/FormField/FormField.js +1 -1
- package/cjs/components/List/List.js +1 -6
- package/cjs/components/Overlay/Overlay.js +0 -2
- package/cjs/components/Select/Select.js +3 -3
- package/cjs/components/Toast/Toast.js +22 -7
- package/cjs/components/Toaster/Toaster.js +4 -6
- package/cjs/components/index.js +10 -1
- package/cjs/index.js +1 -1
- package/dist/plesk-ui-library-rtl.css +1 -1
- package/dist/plesk-ui-library-rtl.css.map +1 -1
- package/dist/plesk-ui-library.css +1 -1
- package/dist/plesk-ui-library.css.map +1 -1
- package/dist/plesk-ui-library.js +61 -35
- package/dist/plesk-ui-library.js.map +1 -1
- package/dist/plesk-ui-library.min.js +2 -2
- package/dist/plesk-ui-library.min.js.map +1 -1
- package/esm/components/AutoClosable/AutoClosable.js +6 -2
- package/esm/components/Button/Button.js +14 -7
- package/esm/components/FormField/FormField.js +1 -1
- package/esm/components/List/List.js +1 -6
- package/esm/components/Overlay/Overlay.js +0 -2
- package/esm/components/Select/Select.js +3 -3
- package/esm/components/Toast/Toast.js +20 -7
- package/esm/components/Toaster/Toaster.js +4 -5
- package/esm/components/index.js +2 -1
- package/esm/index.js +1 -1
- package/package.json +2 -2
- package/styleguide/build/bundle.2a86713c.js +2 -0
- package/styleguide/build/{bundle.fa6ff17e.js.LICENSE.txt → bundle.2a86713c.js.LICENSE.txt} +0 -0
- package/styleguide/index.html +2 -2
- package/types/src/components/Form/Form.d.ts +3 -54
- package/types/src/components/Form/types.d.ts +4 -4
- package/types/src/components/FormFieldPassword/FormFieldPassword.d.ts +2 -2
- package/types/src/components/Toast/Toast.d.ts +9 -0
- package/types/src/components/Toaster/Toaster.d.ts +2 -0
- package/types/src/components/index.d.ts +1 -0
- package/styleguide/build/bundle.fa6ff17e.js +0 -2
package/dist/plesk-ui-library.js
CHANGED
|
@@ -1017,7 +1017,9 @@ class AutoClosable extends _react.Component {
|
|
|
1017
1017
|
}
|
|
1018
1018
|
|
|
1019
1019
|
componentDidMount() {
|
|
1020
|
-
document.body.addEventListener('click', this.onOutsideClick
|
|
1020
|
+
document.body.addEventListener('click', this.onOutsideClick, {
|
|
1021
|
+
capture: true
|
|
1022
|
+
});
|
|
1021
1023
|
|
|
1022
1024
|
if (this.context) {
|
|
1023
1025
|
this.context.addChild(this);
|
|
@@ -1025,7 +1027,9 @@ class AutoClosable extends _react.Component {
|
|
|
1025
1027
|
}
|
|
1026
1028
|
|
|
1027
1029
|
componentWillUnmount() {
|
|
1028
|
-
document.body.removeEventListener('click', this.onOutsideClick
|
|
1030
|
+
document.body.removeEventListener('click', this.onOutsideClick, {
|
|
1031
|
+
capture: true
|
|
1032
|
+
});
|
|
1029
1033
|
|
|
1030
1034
|
if (this.context) {
|
|
1031
1035
|
this.context.removeChild(this);
|
|
@@ -1436,7 +1440,7 @@ const renderCaret = ({
|
|
|
1436
1440
|
*/
|
|
1437
1441
|
|
|
1438
1442
|
|
|
1439
|
-
const Button = ({
|
|
1443
|
+
const Button = /*#__PURE__*/(0, _react.forwardRef)(({
|
|
1440
1444
|
baseClassName,
|
|
1441
1445
|
className,
|
|
1442
1446
|
component: Tag,
|
|
@@ -1454,7 +1458,7 @@ const Button = ({
|
|
|
1454
1458
|
arrow,
|
|
1455
1459
|
disabled,
|
|
1456
1460
|
...props
|
|
1457
|
-
}) => {
|
|
1461
|
+
}, ref) => {
|
|
1458
1462
|
const [selectedState, setSelectedState] = (0, _react.useState)(false);
|
|
1459
1463
|
|
|
1460
1464
|
const handleToggle = () => {
|
|
@@ -1510,6 +1514,7 @@ const Button = ({
|
|
|
1510
1514
|
const hasAriaDisabled = Tag === 'button' && disabled && tooltip;
|
|
1511
1515
|
|
|
1512
1516
|
let button = /*#__PURE__*/_react.default.createElement(Tag, _extends({
|
|
1517
|
+
ref: ref,
|
|
1513
1518
|
className: (0, _classnames.default)(baseClassName, {
|
|
1514
1519
|
[`${baseClassName}--${size}`]: size,
|
|
1515
1520
|
[`${baseClassName}--${intent}`]: intent && !ghost,
|
|
@@ -1549,8 +1554,8 @@ const Button = ({
|
|
|
1549
1554
|
}
|
|
1550
1555
|
|
|
1551
1556
|
return button;
|
|
1552
|
-
};
|
|
1553
|
-
|
|
1557
|
+
});
|
|
1558
|
+
Button.displayName = 'Button';
|
|
1554
1559
|
Button.propTypes = {
|
|
1555
1560
|
/**
|
|
1556
1561
|
* Button size.
|
|
@@ -1644,7 +1649,12 @@ Button.propTypes = {
|
|
|
1644
1649
|
/**
|
|
1645
1650
|
* @ignore
|
|
1646
1651
|
*/
|
|
1647
|
-
baseClassName: _propTypes.default.string
|
|
1652
|
+
baseClassName: _propTypes.default.string,
|
|
1653
|
+
|
|
1654
|
+
/**
|
|
1655
|
+
* @ignore
|
|
1656
|
+
*/
|
|
1657
|
+
onClick: _propTypes.default.func
|
|
1648
1658
|
};
|
|
1649
1659
|
Button.defaultProps = {
|
|
1650
1660
|
size: undefined,
|
|
@@ -1662,7 +1672,8 @@ Button.defaultProps = {
|
|
|
1662
1672
|
component: 'button',
|
|
1663
1673
|
className: undefined,
|
|
1664
1674
|
baseClassName: `${_constants.CLS_PREFIX}button`,
|
|
1665
|
-
arrow: undefined
|
|
1675
|
+
arrow: undefined,
|
|
1676
|
+
onClick: undefined
|
|
1666
1677
|
};
|
|
1667
1678
|
var _default = Button;
|
|
1668
1679
|
exports["default"] = _default;
|
|
@@ -8799,7 +8810,7 @@ class FormField extends _react.Component {
|
|
|
8799
8810
|
multi
|
|
8800
8811
|
} = this.props;
|
|
8801
8812
|
|
|
8802
|
-
if (!description || multi && this.
|
|
8813
|
+
if (!description || multi && this.fieldApi.getValue().length - 1 > index) {
|
|
8803
8814
|
return null;
|
|
8804
8815
|
}
|
|
8805
8816
|
|
|
@@ -14791,14 +14802,9 @@ class List extends _react.Component {
|
|
|
14791
14802
|
|
|
14792
14803
|
if (totalRows && /*#__PURE__*/(0, _react.isValidElement)(pagination)) {
|
|
14793
14804
|
const {
|
|
14794
|
-
itemsPerPageOptions = _Pagination.ITEMS_PER_PAGE_OPTIONS
|
|
14795
|
-
itemsPerPage
|
|
14805
|
+
itemsPerPageOptions = _Pagination.ITEMS_PER_PAGE_OPTIONS
|
|
14796
14806
|
} = pagination.props;
|
|
14797
14807
|
|
|
14798
|
-
if (Number.isInteger(itemsPerPage)) {
|
|
14799
|
-
return totalRows > itemsPerPage;
|
|
14800
|
-
}
|
|
14801
|
-
|
|
14802
14808
|
if (Array.isArray(itemsPerPageOptions)) {
|
|
14803
14809
|
const numericOptions = itemsPerPageOptions.filter(v => Number(v) === v);
|
|
14804
14810
|
|
|
@@ -17830,8 +17836,6 @@ class Overlay extends _react.Component {
|
|
|
17830
17836
|
isExist: true
|
|
17831
17837
|
}, () => {
|
|
17832
17838
|
this.prevFocusElement = document.activeElement;
|
|
17833
|
-
});
|
|
17834
|
-
setTimeout(() => {
|
|
17835
17839
|
this.setState({
|
|
17836
17840
|
isOpened: true
|
|
17837
17841
|
}, () => {
|
|
@@ -22045,8 +22049,8 @@ const Select = ({
|
|
|
22045
22049
|
|
|
22046
22050
|
if (filterValue) {
|
|
22047
22051
|
const lowerFilterValue = filterValue.toLowerCase();
|
|
22048
|
-
groupFns.push(group => !!group.label && group.label.toLowerCase().
|
|
22049
|
-
optionFns.push(option => option.label.toLowerCase().
|
|
22052
|
+
groupFns.push(group => !!group.label && group.label.toLowerCase().includes(lowerFilterValue));
|
|
22053
|
+
optionFns.push(option => option.label.toLowerCase().includes(lowerFilterValue));
|
|
22050
22054
|
}
|
|
22051
22055
|
|
|
22052
22056
|
if (groupFns.length || optionFns.length) {
|
|
@@ -22126,7 +22130,7 @@ const Select = ({
|
|
|
22126
22130
|
|
|
22127
22131
|
const handleHighlightSearch = query => {
|
|
22128
22132
|
const lowerQuery = query.toLowerCase();
|
|
22129
|
-
const index = options.findIndex(o => !o.disabled && o.label.toLowerCase().
|
|
22133
|
+
const index = options.findIndex(o => !o.disabled && o.label.toLowerCase().includes(lowerQuery));
|
|
22130
22134
|
|
|
22131
22135
|
if (index !== -1) {
|
|
22132
22136
|
setHighlightedIndex(index);
|
|
@@ -26493,6 +26497,8 @@ var _Button = _interopRequireDefault(__webpack_require__(/*! ../Button */ "./com
|
|
|
26493
26497
|
|
|
26494
26498
|
var _intentIconMap = __webpack_require__(/*! ../intentIconMap */ "./components/intentIconMap.tsx");
|
|
26495
26499
|
|
|
26500
|
+
var _OnDarkContext = _interopRequireDefault(__webpack_require__(/*! ../OnDarkContext */ "./components/OnDarkContext/index.tsx"));
|
|
26501
|
+
|
|
26496
26502
|
__webpack_require__(/*! ./Toast.less */ "./components/Toast/Toast.less");
|
|
26497
26503
|
|
|
26498
26504
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
@@ -26550,6 +26556,10 @@ class Toast extends _react.Component {
|
|
|
26550
26556
|
className,
|
|
26551
26557
|
message,
|
|
26552
26558
|
intent,
|
|
26559
|
+
accent,
|
|
26560
|
+
icon = intent && /*#__PURE__*/_react.default.createElement(_Icon.default, {
|
|
26561
|
+
name: _intentIconMap.intentIconMap[intent]
|
|
26562
|
+
}),
|
|
26553
26563
|
onClose,
|
|
26554
26564
|
closable = true,
|
|
26555
26565
|
autoClosable,
|
|
@@ -26557,18 +26567,19 @@ class Toast extends _react.Component {
|
|
|
26557
26567
|
innerRef,
|
|
26558
26568
|
...props
|
|
26559
26569
|
} = this.props;
|
|
26560
|
-
|
|
26570
|
+
|
|
26571
|
+
const result = /*#__PURE__*/_react.default.createElement("div", _extends({
|
|
26561
26572
|
tabIndex: 0,
|
|
26562
|
-
className: (0, _classnames.default)(baseClassName, intent && `${baseClassName}--${intent}`, className)
|
|
26573
|
+
className: (0, _classnames.default)(baseClassName, intent && `${baseClassName}--${intent}`, accent && `${baseClassName}--accent`, className)
|
|
26563
26574
|
}, props, {
|
|
26564
26575
|
ref: innerRef
|
|
26565
|
-
}),
|
|
26576
|
+
}), icon ? /*#__PURE__*/_react.default.createElement("div", {
|
|
26566
26577
|
className: `${baseClassName}__icon`
|
|
26567
|
-
},
|
|
26568
|
-
|
|
26569
|
-
})) : null, /*#__PURE__*/_react.default.createElement("
|
|
26578
|
+
}, _Icon.default.create(icon, {
|
|
26579
|
+
intent
|
|
26580
|
+
})) : null, /*#__PURE__*/_react.default.createElement("div", {
|
|
26570
26581
|
className: `${baseClassName}__content`
|
|
26571
|
-
}, message), closable ? /*#__PURE__*/_react.default.createElement("
|
|
26582
|
+
}, message), closable ? /*#__PURE__*/_react.default.createElement("div", {
|
|
26572
26583
|
className: `${baseClassName}__action`
|
|
26573
26584
|
}, /*#__PURE__*/_react.default.createElement(_Button.default, {
|
|
26574
26585
|
ghost: true,
|
|
@@ -26579,6 +26590,14 @@ class Toast extends _react.Component {
|
|
|
26579
26590
|
className: `${baseClassName}__close`,
|
|
26580
26591
|
onClick: onClose
|
|
26581
26592
|
})) : null);
|
|
26593
|
+
|
|
26594
|
+
if (accent) {
|
|
26595
|
+
return result;
|
|
26596
|
+
}
|
|
26597
|
+
|
|
26598
|
+
return /*#__PURE__*/_react.default.createElement(_OnDarkContext.default.Provider, {
|
|
26599
|
+
value: true
|
|
26600
|
+
}, result);
|
|
26582
26601
|
}
|
|
26583
26602
|
|
|
26584
26603
|
}
|
|
@@ -26659,8 +26678,6 @@ var _Toast = _interopRequireDefault(__webpack_require__(/*! ../Toast */ "./compo
|
|
|
26659
26678
|
|
|
26660
26679
|
var _Layer = _interopRequireDefault(__webpack_require__(/*! ../Layer */ "./components/Layer/index.tsx"));
|
|
26661
26680
|
|
|
26662
|
-
var _OnDarkContext = _interopRequireDefault(__webpack_require__(/*! ../OnDarkContext */ "./components/OnDarkContext/index.tsx"));
|
|
26663
|
-
|
|
26664
26681
|
__webpack_require__(/*! ./Toaster.less */ "./components/Toaster/Toaster.less");
|
|
26665
26682
|
|
|
26666
26683
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
@@ -26708,6 +26725,8 @@ class Toaster extends _react.Component {
|
|
|
26708
26725
|
* Add a new toast
|
|
26709
26726
|
*
|
|
26710
26727
|
* `intent` - Visual intent color to apply to component. (Type: `oneOf` 'info', 'success', 'warning', 'danger'. *Required*.)<br>
|
|
26728
|
+
* `accent` - Contrast (light) version of the component. (Type: `boolean`. Default: 'undefined'.)<br>
|
|
26729
|
+
* `icon` - Name of icon or [Icon](#!/Icon) component. (Type: `oneOfType` 'string', 'object', 'element'. Default: `undefined`.)<br>
|
|
26711
26730
|
* `message` - Message to display in the body of the toast. (Type: `any`. Default: `undefined`.)<br>
|
|
26712
26731
|
* `onClose` - onClose handler. (Type: `func`. Default: `undefined`.)<br>
|
|
26713
26732
|
* `closable` - Show close control (cross mark). (Type: `boolean`. Default: `true`.)<br>
|
|
@@ -26797,9 +26816,7 @@ class Toaster extends _react.Component {
|
|
|
26797
26816
|
stack.reverse();
|
|
26798
26817
|
}
|
|
26799
26818
|
|
|
26800
|
-
return /*#__PURE__*/_react.default.createElement(
|
|
26801
|
-
value: true
|
|
26802
|
-
}, /*#__PURE__*/_react.default.createElement(_Layer.default, {
|
|
26819
|
+
return /*#__PURE__*/_react.default.createElement(_Layer.default, {
|
|
26803
26820
|
level: _constants.Z_INDEX_TOASTER
|
|
26804
26821
|
}, /*#__PURE__*/_react.default.createElement("div", _extends({
|
|
26805
26822
|
className: (0, _classnames.default)(baseClassName, {
|
|
@@ -26845,7 +26862,7 @@ class Toaster extends _react.Component {
|
|
|
26845
26862
|
},
|
|
26846
26863
|
innerRef: toastRef
|
|
26847
26864
|
})));
|
|
26848
|
-
}))))
|
|
26865
|
+
}))));
|
|
26849
26866
|
}
|
|
26850
26867
|
|
|
26851
26868
|
}
|
|
@@ -28423,7 +28440,8 @@ var _exportNames = {
|
|
|
28423
28440
|
Tour: true,
|
|
28424
28441
|
Translate: true,
|
|
28425
28442
|
Link: true,
|
|
28426
|
-
Skeleton: true
|
|
28443
|
+
Skeleton: true,
|
|
28444
|
+
PortalContext: true
|
|
28427
28445
|
};
|
|
28428
28446
|
Object.defineProperty(exports, "Action", ({
|
|
28429
28447
|
enumerable: true,
|
|
@@ -28767,6 +28785,12 @@ Object.defineProperty(exports, "Popover", ({
|
|
|
28767
28785
|
return _Popover.default;
|
|
28768
28786
|
}
|
|
28769
28787
|
}));
|
|
28788
|
+
Object.defineProperty(exports, "PortalContext", ({
|
|
28789
|
+
enumerable: true,
|
|
28790
|
+
get: function () {
|
|
28791
|
+
return _Layer.PortalContext;
|
|
28792
|
+
}
|
|
28793
|
+
}));
|
|
28770
28794
|
Object.defineProperty(exports, "Progress", ({
|
|
28771
28795
|
enumerable: true,
|
|
28772
28796
|
get: function () {
|
|
@@ -29290,6 +29314,8 @@ Object.keys(_Skeleton).forEach(function (key) {
|
|
|
29290
29314
|
});
|
|
29291
29315
|
});
|
|
29292
29316
|
|
|
29317
|
+
var _Layer = __webpack_require__(/*! ./Layer */ "./components/Layer/index.tsx");
|
|
29318
|
+
|
|
29293
29319
|
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
29294
29320
|
|
|
29295
29321
|
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
@@ -92580,7 +92606,7 @@ function _objectWithoutPropertiesLoose(source, excluded) {
|
|
|
92580
92606
|
/***/ ((module) => {
|
|
92581
92607
|
|
|
92582
92608
|
"use strict";
|
|
92583
|
-
module.exports = JSON.parse('{"name":"@plesk/ui-library","version":"3.
|
|
92609
|
+
module.exports = JSON.parse('{"name":"@plesk/ui-library","version":"3.29.0","description":"Plesk UI Library","main":"index.js","module":"esm/index.js","types":"./types/src","sideEffects":["cjs/index.js","esm/index.js","dist/*.js","dist/*.css"],"scripts":{"pretest":"yarn lint","test":"jest --ci --coverage --coverageReporters text-summary","test:vr":"cross-env VISUAL_REGRESSION=true jest","build":"yarn build:types && yarn build:umd && yarn build:esm && yarn build:cjs","build:umd":"webpack --config ./configs/build.config.js","build:esm":"cross-env NODE_ENV=esm node ./scripts/build.js","build:cjs":"cross-env NODE_ENV=cjs node ./scripts/build.js","build:types":"rimraf ./types && tsc --project ./configs/types-generator.config.json","create-svg-sprite":"node ./scripts/create-svg-sprite.js","lint":"yarn lint:es && yarn lint:types && yarn lint:style","lint:es":"eslint --ext js,md,tsx src configs scripts styleguidist","lint:types":"tsc","lint:style":"stylelint \\"src/**/*.less\\"","styleguide":"styleguidist server --config ./configs/styleguide.config.js","styleguide:build":"styleguidist build --config ./configs/styleguide.config.js","create-component":"node scripts/create-component.js","prepublishOnly":"yarn install && yarn test && yarn build && yarn styleguide:build","storybook":"webpack serve --config ./configs/storybook.config.js --disable-host-check","postinstall":"node ./scripts/postinstall.js"},"files":["esm","cjs","dist","styleguide","types","/scripts/postinstall.js","/index.js"],"dependencies":{"@babel/runtime":"^7.15.4","@plesk/react-movable":"^2.6.0","@types/classnames":"2.2.7","@types/react":"16.8.13","@types/react-dom":"16.8.4","@types/react-measure":"2.0.8","@types/react-transition-group":"^4.4.4","@types/svg4everybody":"2.1.0","classnames":"^2.3.1","codemirror":"5.48.0","marked":"0.3.19","memoize-one":"^5.1.1","popper.js":"1.14.3","prop-types":"^15.7.2","react-measure":"2.3.0","react-sortable-hoc":"0.6.8","react-transition-group":"^4.4.2","scroll-into-view-if-needed":"^2.2.20","svg4everybody":"2.1.9","use-focus-visible":"^1.0.0"},"devDependencies":{"@babel/core":"^7.15.8","@babel/plugin-proposal-class-properties":"^7.14.5","@babel/plugin-syntax-dynamic-import":"^7.8.3","@babel/plugin-transform-runtime":"^7.15.8","@babel/preset-env":"^7.15.8","@babel/preset-react":"^7.14.5","@babel/preset-typescript":"^7.15.0","@plesk/eslint-config":"^1.1.0","@plesk/stylelint-config":"^1.0.0","@types/buble":"^0.19.2","@types/cheerio":"^0.22.30","@types/doctrine":"^0.0.3","@types/enzyme":"^3.10.9","@types/jest":"^23.3.12","@types/webpack-dev-server":"^3.10.1","@typescript-eslint/eslint-plugin":"^2.7.0","@typescript-eslint/parser":"^2.7.0","autoprefixer":"^10.3.7","babel-loader":"^8.2.3","babel-plugin-dynamic-import-node":"^2.3.3","babel-plugin-transform-require-ignore":"^0.1.1","clean-webpack-plugin":"^4.0.0","cross-env":"^5.2.0","css-loader":"^6.4.0","css-minimizer-webpack-plugin":"^3.1.1","enzyme":"^3.11.0","enzyme-adapter-react-16":"^1.15.6","enzyme-to-json":"^3.6.2","eslint-config-prettier":"^6.11.0","eslint-plugin-markdown":"^1.0.2","eslint-plugin-prettier":"^3.1.3","expect-puppeteer":"^4.4.0","fs-extra":"^7.0.0","html-webpack-plugin":"^5.5.0","inquirer":"^3.2.1","jest":"^24.9.0","jest-dev-server":"^4.4.0","jest-image-snapshot":"^4.0.2","less":"^4.1.2","less-loader":"^10.2.0","mini-css-extract-plugin":"^2.4.3","postcss":"^8.4.6","postcss-less":"^6.0.0","postcss-loader":"^6.2.1","postcss-logical":"^5.0.3","prettier":"^2.0.5","puppeteer-core":"13.1.3","react":"^16.8.6","react-dom":"^16.8.6","react-styleguidist":"^11.1.7","react-test-renderer":"^16.8.6","rimraf":"^3.0.1","rtlcss":"^3.4.0","style-loader":"^3.3.1","stylelint":"^14.3.0","stylelint-config-prettier":"^9.0.3","stylelint-declaration-block-no-ignored-properties":"^2.5.0","stylelint-no-unsupported-browser-features":"^5.0.2","stylelint-prettier":"^2.0.0","stylelint-use-logical-spec":"^3.2.2","svg-mixer":"^2.3.14","terser-webpack-plugin":"^5.2.4","typescript":"^3.7.2","webpack":"^5.60.0","webpack-cli":"^4.9.1"},"peerDependencies":{"react":"^16.8.6","react-dom":"^16.8.6"},"resolutions":{"@babel/types":"^7.15.6","@types/node":"^12.12.8","**/caniuse-lite":"1.0.30001390"},"browserslist":["last 2 versions",">1%","not op_mini all","not dead","not ie 11"],"author":"Plesk Developers <plesk-dev-leads@plesk.com> (https://www.plesk.com/)","license":"Apache-2.0"}');
|
|
92584
92610
|
|
|
92585
92611
|
/***/ }),
|
|
92586
92612
|
|