@jetbrains/ring-ui 5.1.19 → 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/README.md +1 -1
- package/components/auth/request-builder.d.ts +1 -0
- package/components/code/code.d.ts +1 -0
- package/components/editable-heading/editable-heading.css +5 -1
- package/components/editable-heading/editable-heading.d.ts +1 -1
- package/components/editable-heading/editable-heading.js +5 -3
- 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.d.ts +1 -1
- package/dist/editable-heading/editable-heading.js +16 -9
- 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 +32 -32
|
@@ -329,11 +329,9 @@ angularModule.directive('rgSelect', function rgSelectDirective() {
|
|
|
329
329
|
if (query !== lastQuery) {
|
|
330
330
|
return; // do not process the result if queries don't match
|
|
331
331
|
}
|
|
332
|
-
|
|
333
332
|
if (skip && ctrl.lastSkip !== -1 && skip !== ctrl.lastSkip + infiniteScrollPackSize && ctrl.infiniteScrollPackSize) {
|
|
334
333
|
return; // do not process the result if skips not match
|
|
335
334
|
}
|
|
336
|
-
|
|
337
335
|
var items = memorizeOptions(results.data || results, skip).map(ctrl.convertNgModelToSelect);
|
|
338
336
|
$timeout.cancel(loaderDelayTimeout);
|
|
339
337
|
ctrl.dataReceived = true;
|
|
@@ -184,7 +184,7 @@ var SelectLazy = /*#__PURE__*/function () {
|
|
|
184
184
|
ref: function ref(node) {
|
|
185
185
|
var _node$_openPopupIfClo;
|
|
186
186
|
_this2.selectRef(node);
|
|
187
|
-
node === null || node === void 0 || (_node$_openPopupIfClo = node._openPopupIfClosed) === null || _node$_openPopupIfClo === void 0
|
|
187
|
+
node === null || node === void 0 || (_node$_openPopupIfClo = node._openPopupIfClosed) === null || _node$_openPopupIfClo === void 0 || _node$_openPopupIfClo.call(node);
|
|
188
188
|
}
|
|
189
189
|
}), this.container);
|
|
190
190
|
} else {
|
|
@@ -85,7 +85,7 @@ var FallbackStorage = /*#__PURE__*/function () {
|
|
|
85
85
|
*/
|
|
86
86
|
}, {
|
|
87
87
|
key: "set",
|
|
88
|
-
value: function () {
|
|
88
|
+
value: (function () {
|
|
89
89
|
var _set = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee(key, value) {
|
|
90
90
|
var data;
|
|
91
91
|
return _regeneratorRuntime().wrap(function _callee$(_context) {
|
|
@@ -121,9 +121,10 @@ var FallbackStorage = /*#__PURE__*/function () {
|
|
|
121
121
|
* @param {string} key
|
|
122
122
|
* @return {Promise}
|
|
123
123
|
*/
|
|
124
|
+
)
|
|
124
125
|
}, {
|
|
125
126
|
key: "remove",
|
|
126
|
-
value: function () {
|
|
127
|
+
value: (function () {
|
|
127
128
|
var _remove = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee2(key) {
|
|
128
129
|
return _regeneratorRuntime().wrap(function _callee2$(_context2) {
|
|
129
130
|
while (1) switch (_context2.prev = _context2.next) {
|
|
@@ -146,6 +147,7 @@ var FallbackStorage = /*#__PURE__*/function () {
|
|
|
146
147
|
* @param {function(string, value)} callback
|
|
147
148
|
* @return {Promise}
|
|
148
149
|
*/
|
|
150
|
+
)
|
|
149
151
|
}, {
|
|
150
152
|
key: "each",
|
|
151
153
|
value: function each(callback) {
|