@jetbrains/ring-ui 5.1.20 → 5.1.21
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/components/auth/request-builder.d.ts +1 -0
- package/components/code/code.d.ts +1 -0
- package/components/grid/row.js +3 -3
- package/components/header/profile.js +1 -1
- package/components/island/header.js +1 -1
- package/components/list/list.js +3 -3
- package/components/loader/loader__core.js +6 -6
- package/components/popup/popup.js +3 -3
- package/components/progress-bar/progress-bar.css +6 -0
- package/components/progress-bar/progress-bar.d.ts +6 -0
- package/components/progress-bar/progress-bar.js +9 -3
- package/components/query-assist/query-assist.js +1 -1
- package/components/select/select-popup.css +4 -0
- package/components/select/select.js +21 -21
- package/dist/_helpers/select__filter.js +1 -1
- package/dist/analytics/analytics__custom-plugin.js +1 -2
- package/dist/analytics/analytics__ga-plugin.js +1 -1
- package/dist/auth/auth__core.js +35 -35
- package/dist/auth/background-flow.js +2 -2
- package/dist/auth/iframe-flow.js +3 -3
- package/dist/auth/request-builder.d.ts +1 -0
- package/dist/auth/request-builder.js +2 -1
- package/dist/auth/storage.js +8 -4
- package/dist/auth/token-validator.js +4 -3
- package/dist/auth/window-flow.js +3 -3
- package/dist/auth-ng/auth-ng.js +0 -1
- package/dist/caret/caret.js +4 -4
- package/dist/clipboard/clipboard-fallback.js +3 -3
- package/dist/code/code.d.ts +1 -0
- package/dist/data-list/data-list.js +2 -2
- package/dist/date-picker/date-picker.js +1 -1
- package/dist/date-picker/date-popup.js +2 -2
- package/dist/dropdown/dropdown.js +2 -2
- package/dist/editable-heading/editable-heading.js +4 -4
- package/dist/global/focus-sensor-hoc.js +6 -6
- package/dist/global/schedule-raf.js +1 -1
- package/dist/grid/row.js +7 -1
- package/dist/header/profile.js +1 -0
- package/dist/header/smart-services.js +2 -2
- package/dist/input/input.js +2 -2
- package/dist/island/content.js +1 -1
- package/dist/island/header.js +1 -0
- package/dist/list/list.js +3 -0
- package/dist/loader/loader.js +1 -1
- package/dist/loader/loader__core.js +19 -7
- package/dist/loader-screen-ng/loader-screen-ng.js +0 -2
- package/dist/message-bundle-ng/message-bundle-ng.js +0 -1
- package/dist/pager/pager.js +4 -4
- package/dist/popup/popup.js +3 -0
- package/dist/progress-bar/progress-bar.d.ts +6 -0
- package/dist/progress-bar/progress-bar.js +11 -4
- package/dist/query-assist/query-assist.js +13 -12
- package/dist/select/select.js +22 -2
- package/dist/select-ng/select-ng.js +0 -2
- package/dist/select-ng/select-ng__lazy.js +1 -1
- package/dist/storage/storage__fallback.js +4 -2
- package/dist/style.css +1 -1
- package/dist/tab-trap/tab-trap.js +1 -1
- package/dist/table/multitable.js +7 -7
- package/dist/table/row-with-focus-sensor.js +4 -4
- package/dist/table/selection-shortcuts-hoc.js +11 -11
- package/dist/tag/tag.js +1 -1
- package/dist/tags-input/tags-input.js +7 -7
- package/dist/tooltip/tooltip.js +2 -2
- package/package.json +26 -26
|
@@ -115,7 +115,7 @@ var TabTrap = /*#__PURE__*/function (_Component) {
|
|
|
115
115
|
} else if (!this.props.trapDisabled && (!this.node || !this.node.contains(this.previousFocusedNode))) {
|
|
116
116
|
var _this$trapButtonNode;
|
|
117
117
|
this.trapWithoutFocus = true;
|
|
118
|
-
(_this$trapButtonNode = this.trapButtonNode) === null || _this$trapButtonNode === void 0
|
|
118
|
+
(_this$trapButtonNode = this.trapButtonNode) === null || _this$trapButtonNode === void 0 || _this$trapButtonNode.focus();
|
|
119
119
|
}
|
|
120
120
|
}
|
|
121
121
|
}, {
|
package/dist/table/multitable.js
CHANGED
|
@@ -30,14 +30,14 @@ var MultiTable = /*#__PURE__*/function (_PureComponent) {
|
|
|
30
30
|
var newSelection = currentTable.selection.moveUp();
|
|
31
31
|
if (newSelection) {
|
|
32
32
|
var _currentTable$onSelec;
|
|
33
|
-
(_currentTable$onSelec = currentTable.onSelect) === null || _currentTable$onSelec === void 0
|
|
33
|
+
(_currentTable$onSelec = currentTable.onSelect) === null || _currentTable$onSelec === void 0 || _currentTable$onSelec.call(currentTable, newSelection);
|
|
34
34
|
} else if (prevTable) {
|
|
35
35
|
var _currentTable$onSelec2;
|
|
36
|
-
(_currentTable$onSelec2 = currentTable.onSelect) === null || _currentTable$onSelec2 === void 0
|
|
36
|
+
(_currentTable$onSelec2 = currentTable.onSelect) === null || _currentTable$onSelec2 === void 0 || _currentTable$onSelec2.call(currentTable, currentTable.selection.resetFocus());
|
|
37
37
|
newSelection = prevTable.selection.moveUp();
|
|
38
38
|
if (newSelection) {
|
|
39
39
|
var _prevTable$onSelect;
|
|
40
|
-
(_prevTable$onSelect = prevTable.onSelect) === null || _prevTable$onSelect === void 0
|
|
40
|
+
(_prevTable$onSelect = prevTable.onSelect) === null || _prevTable$onSelect === void 0 || _prevTable$onSelect.call(prevTable, newSelection);
|
|
41
41
|
}
|
|
42
42
|
}
|
|
43
43
|
return false;
|
|
@@ -53,14 +53,14 @@ var MultiTable = /*#__PURE__*/function (_PureComponent) {
|
|
|
53
53
|
var newSelection = currentTable.selection.moveDown();
|
|
54
54
|
if (newSelection) {
|
|
55
55
|
var _currentTable$onSelec3;
|
|
56
|
-
(_currentTable$onSelec3 = currentTable.onSelect) === null || _currentTable$onSelec3 === void 0
|
|
56
|
+
(_currentTable$onSelec3 = currentTable.onSelect) === null || _currentTable$onSelec3 === void 0 || _currentTable$onSelec3.call(currentTable, newSelection);
|
|
57
57
|
} else if (nextTable) {
|
|
58
58
|
var _currentTable$onSelec4;
|
|
59
|
-
(_currentTable$onSelec4 = currentTable.onSelect) === null || _currentTable$onSelec4 === void 0
|
|
59
|
+
(_currentTable$onSelec4 = currentTable.onSelect) === null || _currentTable$onSelec4 === void 0 || _currentTable$onSelec4.call(currentTable, currentTable.selection.resetFocus());
|
|
60
60
|
newSelection = nextTable.selection.moveDown();
|
|
61
61
|
if (newSelection) {
|
|
62
62
|
var _nextTable$onSelect;
|
|
63
|
-
(_nextTable$onSelect = nextTable.onSelect) === null || _nextTable$onSelect === void 0
|
|
63
|
+
(_nextTable$onSelect = nextTable.onSelect) === null || _nextTable$onSelect === void 0 || _nextTable$onSelect.call(nextTable, newSelection);
|
|
64
64
|
}
|
|
65
65
|
}
|
|
66
66
|
return false;
|
|
@@ -112,7 +112,7 @@ var MultiTable = /*#__PURE__*/function (_PureComponent) {
|
|
|
112
112
|
});
|
|
113
113
|
if (currentFocused.includes(prevFocused)) {
|
|
114
114
|
var _prevProps$children$p, _prevProps$children$p2;
|
|
115
|
-
(_prevProps$children$p = (_prevProps$children$p2 = prevProps.children[prevFocusedIndex].props).onSelect) === null || _prevProps$children$p === void 0
|
|
115
|
+
(_prevProps$children$p = (_prevProps$children$p2 = prevProps.children[prevFocusedIndex].props).onSelect) === null || _prevProps$children$p === void 0 || _prevProps$children$p.call(_prevProps$children$p2, prevFocused.resetFocus());
|
|
116
116
|
}
|
|
117
117
|
}
|
|
118
118
|
}
|
|
@@ -83,19 +83,19 @@ var RowWithFocusSensorCallbacks = /*#__PURE__*/function (_PureComponent) {
|
|
|
83
83
|
_defineProperty(_assertThisInitialized(_this), "RowWithFocusSensor", getContainer());
|
|
84
84
|
_defineProperty(_assertThisInitialized(_this), "onFocus", function () {
|
|
85
85
|
var _this$props$onFocus, _this$props;
|
|
86
|
-
(_this$props$onFocus = (_this$props = _this.props).onFocus) === null || _this$props$onFocus === void 0
|
|
86
|
+
(_this$props$onFocus = (_this$props = _this.props).onFocus) === null || _this$props$onFocus === void 0 || _this$props$onFocus.call(_this$props, _this.props.item);
|
|
87
87
|
});
|
|
88
88
|
_defineProperty(_assertThisInitialized(_this), "onSelect", function (item, selected) {
|
|
89
89
|
var _this$props$onSelect, _this$props2;
|
|
90
|
-
(_this$props$onSelect = (_this$props2 = _this.props).onSelect) === null || _this$props$onSelect === void 0
|
|
90
|
+
(_this$props$onSelect = (_this$props2 = _this.props).onSelect) === null || _this$props$onSelect === void 0 || _this$props$onSelect.call(_this$props2, item, selected);
|
|
91
91
|
});
|
|
92
92
|
_defineProperty(_assertThisInitialized(_this), "onCollapse", function () {
|
|
93
93
|
var _this$props$onCollaps, _this$props3;
|
|
94
|
-
(_this$props$onCollaps = (_this$props3 = _this.props).onCollapse) === null || _this$props$onCollaps === void 0
|
|
94
|
+
(_this$props$onCollaps = (_this$props3 = _this.props).onCollapse) === null || _this$props$onCollaps === void 0 || _this$props$onCollaps.call(_this$props3, _this.props.item);
|
|
95
95
|
});
|
|
96
96
|
_defineProperty(_assertThisInitialized(_this), "onExpand", function () {
|
|
97
97
|
var _this$props$onExpand, _this$props4;
|
|
98
|
-
(_this$props$onExpand = (_this$props4 = _this.props).onExpand) === null || _this$props$onExpand === void 0
|
|
98
|
+
(_this$props$onExpand = (_this$props4 = _this.props).onExpand) === null || _this$props$onExpand === void 0 || _this$props$onExpand.call(_this$props4, _this.props.item);
|
|
99
99
|
});
|
|
100
100
|
return _this;
|
|
101
101
|
}
|
|
@@ -40,7 +40,7 @@ function selectionShortcutsHOC(ComposedComponent) {
|
|
|
40
40
|
onSelect = _this$props.onSelect;
|
|
41
41
|
var newSelection = selection.moveUp();
|
|
42
42
|
if (newSelection) {
|
|
43
|
-
onSelect === null || onSelect === void 0
|
|
43
|
+
onSelect === null || onSelect === void 0 || onSelect(newSelection);
|
|
44
44
|
}
|
|
45
45
|
return false;
|
|
46
46
|
});
|
|
@@ -50,7 +50,7 @@ function selectionShortcutsHOC(ComposedComponent) {
|
|
|
50
50
|
onSelect = _this$props2.onSelect;
|
|
51
51
|
var newSelection = selection.moveDown();
|
|
52
52
|
if (newSelection) {
|
|
53
|
-
onSelect === null || onSelect === void 0
|
|
53
|
+
onSelect === null || onSelect === void 0 || onSelect(newSelection);
|
|
54
54
|
}
|
|
55
55
|
return false;
|
|
56
56
|
});
|
|
@@ -82,9 +82,9 @@ function selectionShortcutsHOC(ComposedComponent) {
|
|
|
82
82
|
var newSelection = _this.shiftSelect(selection);
|
|
83
83
|
var newMovedSelection = newSelection.moveUp();
|
|
84
84
|
if (newMovedSelection) {
|
|
85
|
-
onSelect === null || onSelect === void 0
|
|
85
|
+
onSelect === null || onSelect === void 0 || onSelect(newMovedSelection);
|
|
86
86
|
} else {
|
|
87
|
-
onSelect === null || onSelect === void 0
|
|
87
|
+
onSelect === null || onSelect === void 0 || onSelect(newSelection);
|
|
88
88
|
}
|
|
89
89
|
});
|
|
90
90
|
_defineProperty(_assertThisInitialized(_this), "onShiftDownPress", function (e) {
|
|
@@ -99,9 +99,9 @@ function selectionShortcutsHOC(ComposedComponent) {
|
|
|
99
99
|
var newSelection = _this.shiftSelect(selection);
|
|
100
100
|
var newMovedSelection = newSelection.moveDown();
|
|
101
101
|
if (newMovedSelection) {
|
|
102
|
-
onSelect === null || onSelect === void 0
|
|
102
|
+
onSelect === null || onSelect === void 0 || onSelect(newMovedSelection);
|
|
103
103
|
} else {
|
|
104
|
-
onSelect === null || onSelect === void 0
|
|
104
|
+
onSelect === null || onSelect === void 0 || onSelect(newSelection);
|
|
105
105
|
}
|
|
106
106
|
});
|
|
107
107
|
_defineProperty(_assertThisInitialized(_this), "onHomePress", function () {
|
|
@@ -110,7 +110,7 @@ function selectionShortcutsHOC(ComposedComponent) {
|
|
|
110
110
|
onSelect = _this$props5.onSelect;
|
|
111
111
|
var newSelection = selection.moveStart();
|
|
112
112
|
if (newSelection) {
|
|
113
|
-
onSelect === null || onSelect === void 0
|
|
113
|
+
onSelect === null || onSelect === void 0 || onSelect(newSelection);
|
|
114
114
|
}
|
|
115
115
|
return false;
|
|
116
116
|
});
|
|
@@ -120,7 +120,7 @@ function selectionShortcutsHOC(ComposedComponent) {
|
|
|
120
120
|
onSelect = _this$props6.onSelect;
|
|
121
121
|
var newSelection = selection.moveEnd();
|
|
122
122
|
if (newSelection) {
|
|
123
|
-
onSelect === null || onSelect === void 0
|
|
123
|
+
onSelect === null || onSelect === void 0 || onSelect(newSelection);
|
|
124
124
|
}
|
|
125
125
|
return false;
|
|
126
126
|
});
|
|
@@ -132,14 +132,14 @@ function selectionShortcutsHOC(ComposedComponent) {
|
|
|
132
132
|
if (!selectable) {
|
|
133
133
|
return true;
|
|
134
134
|
}
|
|
135
|
-
onSelect === null || onSelect === void 0
|
|
135
|
+
onSelect === null || onSelect === void 0 || onSelect(selection.toggleSelection());
|
|
136
136
|
return false;
|
|
137
137
|
});
|
|
138
138
|
_defineProperty(_assertThisInitialized(_this), "onEscPress", function () {
|
|
139
139
|
var _this$props8 = _this.props,
|
|
140
140
|
selection = _this$props8.selection,
|
|
141
141
|
onSelect = _this$props8.onSelect;
|
|
142
|
-
onSelect === null || onSelect === void 0
|
|
142
|
+
onSelect === null || onSelect === void 0 || onSelect(selection.reset());
|
|
143
143
|
//this.restoreFocusWithoutScroll();
|
|
144
144
|
});
|
|
145
145
|
_defineProperty(_assertThisInitialized(_this), "onCmdAPress", function () {
|
|
@@ -150,7 +150,7 @@ function selectionShortcutsHOC(ComposedComponent) {
|
|
|
150
150
|
if (!selectable) {
|
|
151
151
|
return true;
|
|
152
152
|
}
|
|
153
|
-
onSelect === null || onSelect === void 0
|
|
153
|
+
onSelect === null || onSelect === void 0 || onSelect(selection.selectAll());
|
|
154
154
|
return false;
|
|
155
155
|
});
|
|
156
156
|
_defineProperty(_assertThisInitialized(_this), "shortcutsMap", {
|
package/dist/tag/tag.js
CHANGED
|
@@ -65,7 +65,7 @@ var Tag = /*#__PURE__*/function (_PureComponent) {
|
|
|
65
65
|
}
|
|
66
66
|
if (this.state.focused) {
|
|
67
67
|
var _this$tagNode;
|
|
68
|
-
(_this$tagNode = this.tagNode) === null || _this$tagNode === void 0
|
|
68
|
+
(_this$tagNode = this.tagNode) === null || _this$tagNode === void 0 || _this$tagNode.focus();
|
|
69
69
|
}
|
|
70
70
|
this.setDocumentClickListener(this.state.focused);
|
|
71
71
|
}
|
|
@@ -143,7 +143,7 @@ var TagsInput = /*#__PURE__*/function (_PureComponent) {
|
|
|
143
143
|
_defineProperty(_assertThisInitialized(_this), "caret", void 0);
|
|
144
144
|
_defineProperty(_assertThisInitialized(_this), "focusInput", function () {
|
|
145
145
|
var _this$getInputNode;
|
|
146
|
-
(_this$getInputNode = _this.getInputNode()) === null || _this$getInputNode === void 0
|
|
146
|
+
(_this$getInputNode = _this.getInputNode()) === null || _this$getInputNode === void 0 || _this$getInputNode.focus();
|
|
147
147
|
});
|
|
148
148
|
_defineProperty(_assertThisInitialized(_this), "focus", function () {
|
|
149
149
|
_this.focusInput();
|
|
@@ -156,8 +156,8 @@ var TagsInput = /*#__PURE__*/function (_PureComponent) {
|
|
|
156
156
|
var isUniqueTag = _this.state.tags.filter(function (item) {
|
|
157
157
|
return tag.key === item.key;
|
|
158
158
|
}).length === 0;
|
|
159
|
-
(_this$select = _this.select) === null || _this$select === void 0
|
|
160
|
-
(_this$select2 = _this.select) === null || _this$select2 === void 0
|
|
159
|
+
(_this$select = _this.select) === null || _this$select === void 0 || _this$select.clear();
|
|
160
|
+
(_this$select2 = _this.select) === null || _this$select2 === void 0 || _this$select2.filterValue('');
|
|
161
161
|
if (isUniqueTag) {
|
|
162
162
|
_this.setState(function (prevState) {
|
|
163
163
|
return {
|
|
@@ -175,7 +175,7 @@ var TagsInput = /*#__PURE__*/function (_PureComponent) {
|
|
|
175
175
|
if (event.target !== _this.node && event.target.parentElement !== _this.node) {
|
|
176
176
|
return;
|
|
177
177
|
}
|
|
178
|
-
(_this$select3 = _this.select) === null || _this$select3 === void 0
|
|
178
|
+
(_this$select3 = _this.select) === null || _this$select3 === void 0 || _this$select3._clickHandler();
|
|
179
179
|
});
|
|
180
180
|
_defineProperty(_assertThisInitialized(_this), "filterExistingTags", function (suggestions) {
|
|
181
181
|
var tagsMap = new Map(_this.state.tags.map(function (tag) {
|
|
@@ -288,7 +288,7 @@ var TagsInput = /*#__PURE__*/function (_PureComponent) {
|
|
|
288
288
|
if (_this.state.activeIndex === _this.state.tags.length - 1) {
|
|
289
289
|
if (!_this.props.disabled) {
|
|
290
290
|
var _this$getInputNode4;
|
|
291
|
-
(_this$getInputNode4 = _this.getInputNode()) === null || _this$getInputNode4 === void 0
|
|
291
|
+
(_this$getInputNode4 = _this.getInputNode()) === null || _this$getInputNode4 === void 0 || _this$getInputNode4.focus();
|
|
292
292
|
_this.setActiveIndex();
|
|
293
293
|
}
|
|
294
294
|
} else {
|
|
@@ -302,7 +302,7 @@ var TagsInput = /*#__PURE__*/function (_PureComponent) {
|
|
|
302
302
|
var _this$select5;
|
|
303
303
|
event.preventDefault();
|
|
304
304
|
var tagsLength = _this.state.tags.length;
|
|
305
|
-
(_this$select5 = _this.select) === null || _this$select5 === void 0
|
|
305
|
+
(_this$select5 = _this.select) === null || _this$select5 === void 0 || _this$select5._hidePopup(true); // otherwise confirmation may be overlapped by popup
|
|
306
306
|
_this.onRemoveTag(_this.state.tags[tagsLength - 1]);
|
|
307
307
|
return false;
|
|
308
308
|
}
|
|
@@ -345,7 +345,7 @@ var TagsInput = /*#__PURE__*/function (_PureComponent) {
|
|
|
345
345
|
var _this$select6;
|
|
346
346
|
this.focusInput();
|
|
347
347
|
this.loadSuggestions();
|
|
348
|
-
(_this$select6 = this.select) === null || _this$select6 === void 0
|
|
348
|
+
(_this$select6 = this.select) === null || _this$select6 === void 0 || _this$select6._showPopup();
|
|
349
349
|
}
|
|
350
350
|
}
|
|
351
351
|
}, {
|
package/dist/tooltip/tooltip.js
CHANGED
|
@@ -99,7 +99,7 @@ var Tooltip = /*#__PURE__*/function (_Component) {
|
|
|
99
99
|
return;
|
|
100
100
|
}
|
|
101
101
|
}
|
|
102
|
-
(_this$context = _this.context) === null || _this$context === void 0
|
|
102
|
+
(_this$context = _this.context) === null || _this$context === void 0 || _this$context.onNestedTooltipShow();
|
|
103
103
|
_this.setState({
|
|
104
104
|
showPopup: true
|
|
105
105
|
});
|
|
@@ -107,7 +107,7 @@ var Tooltip = /*#__PURE__*/function (_Component) {
|
|
|
107
107
|
_defineProperty(_assertThisInitialized(_this), "hidePopup", function () {
|
|
108
108
|
var _this$context2;
|
|
109
109
|
clearTimeout(_this.timeout);
|
|
110
|
-
(_this$context2 = _this.context) === null || _this$context2 === void 0
|
|
110
|
+
(_this$context2 = _this.context) === null || _this$context2 === void 0 || _this$context2.onNestedTooltipHide();
|
|
111
111
|
_this.setState({
|
|
112
112
|
showPopup: false
|
|
113
113
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jetbrains/ring-ui",
|
|
3
|
-
"version": "5.1.
|
|
3
|
+
"version": "5.1.21",
|
|
4
4
|
"description": "JetBrains UI library",
|
|
5
5
|
"author": "JetBrains",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -75,7 +75,7 @@
|
|
|
75
75
|
},
|
|
76
76
|
"readmeFilename": "README.md",
|
|
77
77
|
"devDependencies": {
|
|
78
|
-
"@babel/cli": "^7.23.
|
|
78
|
+
"@babel/cli": "^7.23.4",
|
|
79
79
|
"@babel/eslint-parser": "^7.23.3",
|
|
80
80
|
"@csstools/stylelint-no-at-nest-rule": "^1.0.0",
|
|
81
81
|
"@jetbrains/eslint-config": "^5.4.1",
|
|
@@ -85,32 +85,32 @@
|
|
|
85
85
|
"@rollup/plugin-json": "^6.0.1",
|
|
86
86
|
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
87
87
|
"@rollup/plugin-replace": "^5.0.5",
|
|
88
|
-
"@storybook/addon-a11y": "7.
|
|
89
|
-
"@storybook/addon-docs": "7.
|
|
90
|
-
"@storybook/addon-essentials": "7.
|
|
88
|
+
"@storybook/addon-a11y": "7.6.2",
|
|
89
|
+
"@storybook/addon-docs": "7.6.0",
|
|
90
|
+
"@storybook/addon-essentials": "7.6.1",
|
|
91
91
|
"@storybook/addon-storyshots": "7.4.5",
|
|
92
|
-
"@storybook/addon-storyshots-puppeteer": "7.
|
|
93
|
-
"@storybook/addon-storysource": "7.
|
|
92
|
+
"@storybook/addon-storyshots-puppeteer": "7.6.1",
|
|
93
|
+
"@storybook/addon-storysource": "7.6.2",
|
|
94
94
|
"@storybook/addons": "7.5.3",
|
|
95
95
|
"@storybook/html": "7.4.5",
|
|
96
|
-
"@storybook/html-webpack5": "^7.
|
|
96
|
+
"@storybook/html-webpack5": "^7.6.1",
|
|
97
97
|
"@storybook/preview-api": "7.4.5",
|
|
98
98
|
"@storybook/react": "7.5.3",
|
|
99
|
-
"@storybook/source-loader": "7.
|
|
100
|
-
"@storybook/theming": "7.
|
|
101
|
-
"@testing-library/react": "^14.
|
|
99
|
+
"@storybook/source-loader": "7.6.1",
|
|
100
|
+
"@storybook/theming": "7.6.1",
|
|
101
|
+
"@testing-library/react": "^14.1.2",
|
|
102
102
|
"@testing-library/user-event": "^14.5.1",
|
|
103
|
-
"@types/chai": "^4.3.
|
|
103
|
+
"@types/chai": "^4.3.11",
|
|
104
104
|
"@types/chai-as-promised": "^7.1.8",
|
|
105
105
|
"@types/chai-dom": "0.0.10",
|
|
106
106
|
"@types/chai-enzyme": "^0.6.13",
|
|
107
107
|
"@types/enzyme": "^3.10.16",
|
|
108
|
-
"@types/react": "^18.2.
|
|
109
|
-
"@types/react-dom": "^18.2.
|
|
110
|
-
"@types/sinon": "^17.0.
|
|
108
|
+
"@types/react": "^18.2.39",
|
|
109
|
+
"@types/react-dom": "^18.2.17",
|
|
110
|
+
"@types/sinon": "^17.0.2",
|
|
111
111
|
"@types/sinon-chai": "^3.2.12",
|
|
112
|
-
"@typescript-eslint/eslint-plugin": "^6.
|
|
113
|
-
"@typescript-eslint/parser": "^6.
|
|
112
|
+
"@typescript-eslint/eslint-plugin": "^6.13.1",
|
|
113
|
+
"@typescript-eslint/parser": "^6.13.1",
|
|
114
114
|
"@wojtekmaj/enzyme-adapter-react-17": "^0.8.0",
|
|
115
115
|
"acorn": "^8.11.2",
|
|
116
116
|
"angular": "^1.8.3",
|
|
@@ -118,16 +118,16 @@
|
|
|
118
118
|
"angular-route": "^1.8.3",
|
|
119
119
|
"babel-plugin-react-docgen": "^4.2.1",
|
|
120
120
|
"babel-plugin-require-context-hook": "^1.0.0",
|
|
121
|
-
"caniuse-lite": "^1.0.
|
|
121
|
+
"caniuse-lite": "^1.0.30001565",
|
|
122
122
|
"chai": "^4.3.10",
|
|
123
123
|
"chai-as-promised": "^7.1.1",
|
|
124
124
|
"chai-dom": "^1.10.0",
|
|
125
125
|
"chai-enzyme": "1.0.0-beta.1",
|
|
126
126
|
"cheerio": "^1.0.0-rc.12",
|
|
127
|
-
"core-js": "^3.33.
|
|
127
|
+
"core-js": "^3.33.3",
|
|
128
128
|
"cpy-cli": "^3.1.1",
|
|
129
129
|
"enzyme": "^3.11.0",
|
|
130
|
-
"eslint": "^8.
|
|
130
|
+
"eslint": "^8.54.0",
|
|
131
131
|
"eslint-import-resolver-webpack": "^0.13.8",
|
|
132
132
|
"eslint-plugin-angular": "^4.1.0",
|
|
133
133
|
"eslint-plugin-bdd": "^2.1.1",
|
|
@@ -168,14 +168,14 @@
|
|
|
168
168
|
"sinon": "^17.0.1",
|
|
169
169
|
"sinon-chai": "^3.7.0",
|
|
170
170
|
"storage-mock": "^2.1.0",
|
|
171
|
-
"storybook": "^7.
|
|
171
|
+
"storybook": "^7.6.2",
|
|
172
172
|
"storybook-addon-themes": "^6.1.0",
|
|
173
173
|
"storybook-zeplin": "^2.0.2",
|
|
174
174
|
"stylelint": "^15.11.0",
|
|
175
175
|
"svg-inline-loader": "^0.8.2",
|
|
176
176
|
"teamcity-service-messages": "^0.1.14",
|
|
177
177
|
"terser-webpack-plugin": "^5.3.9",
|
|
178
|
-
"typescript": "~5.
|
|
178
|
+
"typescript": "~5.3.2",
|
|
179
179
|
"wallaby-webpack": "^3.9.16",
|
|
180
180
|
"webpack": "^5.89.0",
|
|
181
181
|
"webpack-cli": "^5.1.4",
|
|
@@ -201,7 +201,7 @@
|
|
|
201
201
|
}
|
|
202
202
|
},
|
|
203
203
|
"dependencies": {
|
|
204
|
-
"@babel/core": "^7.23.
|
|
204
|
+
"@babel/core": "^7.23.5",
|
|
205
205
|
"@babel/preset-typescript": "^7.23.3",
|
|
206
206
|
"@jetbrains/babel-preset-jetbrains": "^2.3.2",
|
|
207
207
|
"@jetbrains/icons": "^3.22.0",
|
|
@@ -211,9 +211,9 @@
|
|
|
211
211
|
"@types/deep-equal": "^1.0.4",
|
|
212
212
|
"@types/element-resize-detector": "^1.1.6",
|
|
213
213
|
"@types/google.analytics": "0.0.45",
|
|
214
|
-
"@types/prop-types": "^15.7.
|
|
215
|
-
"@types/react-virtualized": "9.21.
|
|
216
|
-
"@types/util-deprecate": "^1.0.
|
|
214
|
+
"@types/prop-types": "^15.7.11",
|
|
215
|
+
"@types/react-virtualized": "9.21.28",
|
|
216
|
+
"@types/util-deprecate": "^1.0.3",
|
|
217
217
|
"@ungap/url-search-params": "^0.2.2",
|
|
218
218
|
"babel-loader": "9.1.3",
|
|
219
219
|
"babel-plugin-transform-define": "^2.1.4",
|