@jetbrains/ring-ui-built 7.0.0-beta.1 → 7.0.0-beta.11
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/_helpers/_rollupPluginBabelHelpers.js +1 -504
- package/components/_helpers/anchor.js +7 -10
- package/components/_helpers/button__classes.js +23 -20
- package/components/_helpers/caption.js +11 -21
- package/components/_helpers/card.js +91 -123
- package/components/_helpers/dialog__body-scroll-preventer.js +10 -17
- package/components/_helpers/header.js +1 -1
- package/components/_helpers/icon__svg.js +27 -29
- package/components/_helpers/input.js +151 -193
- package/components/_helpers/query-assist__suggestions.js +79 -94
- package/components/_helpers/select__filter.js +56 -75
- package/components/_helpers/services-link.js +23 -39
- package/components/_helpers/sidebar.js +91 -102
- package/components/_helpers/tab-link.js +8 -12
- package/components/_helpers/theme.js +61 -51
- package/components/_helpers/title.js +59 -84
- package/components/alert/alert.d.ts +7 -24
- package/components/alert/alert.js +111 -179
- package/components/alert/container.d.ts +0 -5
- package/components/alert/container.js +32 -44
- package/components/alert-service/alert-service.js +104 -162
- package/components/analytics/analytics.js +12 -20
- package/components/analytics/analytics__custom-plugin.js +52 -68
- package/components/auth/auth.js +2 -31
- package/components/auth/auth__core.d.ts +4 -4
- package/components/auth/auth__core.js +755 -1433
- package/components/auth/background-flow.js +84 -121
- package/components/auth/down-notification.js +32 -79
- package/components/auth/iframe-flow.js +71 -125
- package/components/auth/request-builder.js +46 -77
- package/components/auth/response-parser.js +84 -112
- package/components/auth/storage.js +162 -324
- package/components/auth/token-validator.js +132 -227
- package/components/auth/window-flow.js +84 -121
- package/components/auth-dialog/auth-dialog.d.ts +0 -18
- package/components/auth-dialog/auth-dialog.js +107 -176
- package/components/auth-dialog-service/auth-dialog-service.js +12 -33
- package/components/avatar/avatar-example-datauri.js +1 -1
- package/components/avatar/avatar.d.ts +0 -13
- package/components/avatar/avatar.js +94 -136
- package/components/avatar/fallback-avatar.d.ts +1 -10
- package/components/avatar/fallback-avatar.js +20 -40
- package/components/badge/badge.d.ts +0 -10
- package/components/badge/badge.js +32 -48
- package/components/breadcrumbs/breadcrumbs.js +13 -17
- package/components/button/button.d.ts +0 -21
- package/components/button/button.js +68 -104
- package/components/button/button__classes.d.ts +1 -1
- package/components/button-group/button-group.d.ts +0 -5
- package/components/button-group/button-group.js +27 -41
- package/components/button-group/caption.d.ts +0 -4
- package/components/button-group/caption.js +0 -1
- package/components/button-set/button-set.d.ts +0 -6
- package/components/button-set/button-set.js +19 -33
- package/components/button-toolbar/button-toolbar.d.ts +0 -6
- package/components/button-toolbar/button-toolbar.js +17 -31
- package/components/caret/caret.js +184 -211
- package/components/checkbox/checkbox.d.ts +0 -19
- package/components/checkbox/checkbox.js +69 -104
- package/components/clipboard/clipboard-fallback.js +7 -7
- package/components/clipboard/clipboard.js +36 -129
- package/components/code/code.d.ts +0 -12
- package/components/code/code.js +83 -163
- package/components/collapse/collapse-content.js +42 -60
- package/components/collapse/collapse-context.js +2 -2
- package/components/collapse/collapse-control.js +12 -12
- package/components/collapse/collapse.js +12 -17
- package/components/collapse/consts.js +4 -4
- package/components/collapse/utils.js +1 -3
- package/components/confirm/confirm.d.ts +0 -14
- package/components/confirm/confirm.js +68 -112
- package/components/confirm-service/confirm-service.js +25 -47
- package/components/content-layout/content-layout.d.ts +0 -7
- package/components/content-layout/content-layout.js +41 -63
- package/components/content-layout/sidebar.d.ts +0 -9
- package/components/content-layout/sidebar.js +1 -2
- package/components/contenteditable/contenteditable.d.ts +1 -22
- package/components/contenteditable/contenteditable.js +37 -60
- package/components/control-help/control-help.js +5 -3
- package/components/control-label/control-label.js +9 -14
- package/components/data-list/data-list.d.ts +0 -2
- package/components/data-list/data-list.js +115 -179
- package/components/data-list/data-list.mock.js +3 -6
- package/components/data-list/item.js +119 -165
- package/components/data-list/selection.js +77 -135
- package/components/data-list/title.d.ts +2 -2
- package/components/data-list/title.js +2 -12
- package/components/date-picker/consts.d.ts +0 -2
- package/components/date-picker/consts.js +16 -24
- package/components/date-picker/date-input.d.ts +0 -20
- package/components/date-picker/date-input.js +100 -148
- package/components/date-picker/date-picker.d.ts +0 -29
- package/components/date-picker/date-picker.js +143 -224
- package/components/date-picker/date-popup.d.ts +0 -22
- package/components/date-picker/date-popup.js +282 -352
- package/components/date-picker/day.d.ts +0 -14
- package/components/date-picker/day.js +72 -109
- package/components/date-picker/month-names.d.ts +1 -11
- package/components/date-picker/month-names.js +42 -72
- package/components/date-picker/month-slider.d.ts +0 -9
- package/components/date-picker/month-slider.js +43 -71
- package/components/date-picker/month.d.ts +1 -9
- package/components/date-picker/month.js +18 -30
- package/components/date-picker/months.d.ts +1 -9
- package/components/date-picker/months.js +45 -55
- package/components/date-picker/weekdays.d.ts +2 -8
- package/components/date-picker/weekdays.js +12 -25
- package/components/date-picker/years.d.ts +0 -6
- package/components/date-picker/years.js +77 -104
- package/components/dialog/dialog.d.ts +0 -20
- package/components/dialog/dialog.js +153 -211
- package/components/dialog/dialog__body-scroll-preventer.js +0 -3
- package/components/dropdown/anchor.d.ts +1 -8
- package/components/dropdown/anchor.js +0 -7
- package/components/dropdown/dropdown.d.ts +4 -22
- package/components/dropdown/dropdown.js +134 -176
- package/components/dropdown-menu/dropdown-menu.js +51 -103
- package/components/editable-heading/editable-heading.js +69 -118
- package/components/error-bubble/error-bubble.d.ts +0 -6
- package/components/error-bubble/error-bubble.js +30 -60
- package/components/error-message/error-message.d.ts +0 -10
- package/components/error-message/error-message.js +34 -59
- package/components/footer/footer.js +28 -44
- package/components/form/form.js +1 -1
- package/components/global/compose.js +1 -8
- package/components/global/composeRefs.d.ts +0 -3
- package/components/global/composeRefs.js +8 -15
- package/components/global/controls-height.js +2 -2
- package/components/global/create-stateful-context.d.ts +0 -4
- package/components/global/create-stateful-context.js +14 -17
- package/components/global/data-tests.js +7 -12
- package/components/global/dom.js +49 -82
- package/components/global/focus-sensor-hoc.js +95 -122
- package/components/global/fuzzy-highlight.js +23 -34
- package/components/global/get-event-key.js +8 -8
- package/components/global/get-uid.js +3 -7
- package/components/global/inject-styles.js +7 -14
- package/components/global/listeners.js +28 -47
- package/components/global/memoize.js +6 -10
- package/components/global/normalize-indent.js +19 -46
- package/components/global/promise-with-timeout.js +6 -8
- package/components/global/react-dom-renderer.d.ts +0 -5
- package/components/global/react-dom-renderer.js +29 -45
- package/components/global/rerender-hoc.d.ts +2 -2
- package/components/global/rerender-hoc.js +16 -32
- package/components/global/schedule-raf.js +4 -4
- package/components/global/sniffer.js +1 -1
- package/components/global/theme.d.ts +8 -2
- package/components/global/theme.js +2 -20
- package/components/global/trivial-template-tag.js +4 -9
- package/components/global/typescript-utils.js +2 -6
- package/components/global/url.js +20 -23
- package/components/global/use-event-callback.js +7 -4
- package/components/grid/col.d.ts +0 -14
- package/components/grid/col.js +27 -53
- package/components/grid/grid.d.ts +0 -5
- package/components/grid/grid.js +20 -32
- package/components/grid/row.d.ts +0 -18
- package/components/grid/row.js +23 -47
- package/components/group/group.d.ts +0 -5
- package/components/group/group.js +18 -27
- package/components/header/header-icon.d.ts +0 -22
- package/components/header/header-icon.js +20 -37
- package/components/header/header.d.ts +0 -7
- package/components/header/header.js +30 -74
- package/components/header/links.d.ts +2 -0
- package/components/header/links.js +20 -0
- package/components/header/logo.d.ts +0 -4
- package/components/header/logo.js +15 -30
- package/components/header/profile.d.ts +1 -39
- package/components/header/profile.js +126 -191
- package/components/header/services-link.d.ts +0 -10
- package/components/header/services-link.js +1 -4
- package/components/header/services.d.ts +0 -14
- package/components/header/services.js +65 -110
- package/components/header/smart-profile.d.ts +0 -9
- package/components/header/smart-profile.js +116 -205
- package/components/header/smart-services.d.ts +0 -4
- package/components/header/smart-services.js +72 -141
- package/components/header/tray.d.ts +0 -5
- package/components/header/tray.js +21 -35
- package/components/heading/heading.js +21 -26
- package/components/http/http.js +162 -319
- package/components/http/http.mock.js +50 -98
- package/components/hub-source/hub-source.js +77 -182
- package/components/hub-source/hub-source__user.js +9 -37
- package/components/hub-source/hub-source__users-groups.js +34 -60
- package/components/i18n/i18n-context.js +7 -8
- package/components/i18n/i18n.js +3 -6
- package/components/icon/icon.d.ts +0 -11
- package/components/icon/icon.js +60 -85
- package/components/icon/icon__svg.d.ts +0 -8
- package/components/icon/icon__svg.js +0 -6
- package/components/icon/index.js +0 -6
- package/components/input/input-legacy.js +1 -1
- package/components/input/input.js +2 -14
- package/components/input-size/input-size.js +1 -1
- package/components/island/adaptive-island-hoc.d.ts +0 -1
- package/components/island/adaptive-island-hoc.js +30 -39
- package/components/island/content.d.ts +0 -10
- package/components/island/content.js +99 -119
- package/components/island/header.js +55 -73
- package/components/island/island.d.ts +0 -9
- package/components/island/island.js +25 -41
- package/components/island-legacy/content-legacy.d.ts +0 -5
- package/components/island-legacy/content-legacy.js +16 -27
- package/components/island-legacy/header-legacy.d.ts +0 -5
- package/components/island-legacy/header-legacy.js +19 -30
- package/components/island-legacy/island-legacy.d.ts +0 -5
- package/components/island-legacy/island-legacy.js +16 -27
- package/components/link/clickableLink.d.ts +0 -9
- package/components/link/clickableLink.js +33 -51
- package/components/link/link.d.ts +0 -25
- package/components/link/link.js +47 -68
- package/components/list/consts.js +2 -2
- package/components/list/list.d.ts +0 -32
- package/components/list/list.js +399 -516
- package/components/list/list__custom.js +51 -78
- package/components/list/list__hint.d.ts +0 -4
- package/components/list/list__hint.js +8 -21
- package/components/list/list__item.js +147 -211
- package/components/list/list__link.js +39 -59
- package/components/list/list__separator.js +15 -30
- package/components/list/list__title.js +25 -41
- package/components/list/list__users-groups-source.js +55 -123
- package/components/loader/loader.d.ts +0 -10
- package/components/loader/loader.js +38 -70
- package/components/loader/loader__core.js +123 -184
- package/components/loader-inline/loader-inline.d.ts +0 -6
- package/components/loader-inline/loader-inline.js +24 -38
- package/components/loader-screen/loader-screen.d.ts +0 -6
- package/components/loader-screen/loader-screen.js +24 -46
- package/components/login-dialog/login-dialog.d.ts +0 -11
- package/components/login-dialog/login-dialog.js +94 -145
- package/components/login-dialog/service.js +11 -33
- package/components/markdown/markdown.js +16 -29
- package/components/message/message.js +171 -218
- package/components/old-browsers-message/old-browsers-message.js +11 -14
- package/components/old-browsers-message/old-browsers-message__stop.js +1 -4
- package/components/old-browsers-message/white-list.js +8 -13
- package/components/pager/pager.js +211 -275
- package/components/panel/panel.d.ts +0 -5
- package/components/panel/panel.js +16 -27
- package/components/permissions/permissions.js +118 -161
- package/components/permissions/permissions__cache.js +191 -218
- package/components/popup/popup.consts.js +1 -1
- package/components/popup/popup.js +237 -329
- package/components/popup/popup.target.js +9 -12
- package/components/popup/position.js +94 -101
- package/components/popup-menu/popup-menu.js +31 -76
- package/components/progress-bar/progress-bar.d.ts +19 -33
- package/components/progress-bar/progress-bar.js +55 -99
- package/components/query-assist/query-assist.d.ts +63 -93
- package/components/query-assist/query-assist.js +585 -748
- package/components/query-assist/query-assist__suggestions.js +2 -28
- package/components/radio/radio.d.ts +0 -8
- package/components/radio/radio.js +15 -35
- package/components/radio/radio__item.d.ts +0 -9
- package/components/radio/radio__item.js +52 -72
- package/components/scrollable-section/scrollable-section.js +53 -0
- package/components/select/select.d.ts +3 -0
- package/components/select/select.js +714 -863
- package/components/select/select__filter.js +2 -29
- package/components/select/select__popup.js +317 -465
- package/components/shortcuts/core.js +147 -195
- package/components/shortcuts/shortcut-title.js +6 -10
- package/components/shortcuts/shortcuts-hoc.d.ts +0 -5
- package/components/shortcuts/shortcuts-hoc.js +23 -46
- package/components/shortcuts/shortcuts.d.ts +0 -8
- package/components/shortcuts/shortcuts.js +41 -72
- package/components/slider/slider.js +93 -113
- package/components/slider/slider.utils.js +16 -23
- package/components/storage/storage.d.ts +2 -3
- package/components/storage/storage.js +2 -46
- package/components/storage/storage__local.js +89 -148
- package/components/style.css +1 -1
- package/components/tab-trap/tab-trap.js +35 -61
- package/components/table/cell.d.ts +0 -6
- package/components/table/cell.js +11 -27
- package/components/table/disable-hover-hoc.d.ts +0 -1
- package/components/table/disable-hover-hoc.js +27 -42
- package/components/table/header-cell.d.ts +0 -10
- package/components/table/header-cell.js +59 -85
- package/components/table/header.d.ts +1 -23
- package/components/table/header.js +89 -126
- package/components/table/multitable.d.ts +0 -4
- package/components/table/multitable.js +83 -93
- package/components/table/row-with-focus-sensor.d.ts +2 -2
- package/components/table/row-with-focus-sensor.js +26 -60
- package/components/table/row.js +170 -235
- package/components/table/selection-adapter.js +2 -2
- package/components/table/selection-shortcuts-hoc.js +102 -126
- package/components/table/selection.js +150 -217
- package/components/table/simple-table.d.ts +0 -44
- package/components/table/simple-table.js +18 -59
- package/components/table/smart-table.d.ts +0 -48
- package/components/table/smart-table.js +41 -83
- package/components/table/table.d.ts +0 -2
- package/components/table/table.js +269 -377
- package/components/tabs/collapsible-more.d.ts +1 -9
- package/components/tabs/collapsible-more.js +47 -97
- package/components/tabs/collapsible-tab.js +32 -44
- package/components/tabs/collapsible-tabs.d.ts +2 -29
- package/components/tabs/collapsible-tabs.js +89 -161
- package/components/tabs/custom-item.d.ts +1 -7
- package/components/tabs/custom-item.js +4 -7
- package/components/tabs/dumb-tabs.d.ts +0 -11
- package/components/tabs/dumb-tabs.js +60 -104
- package/components/tabs/smart-tabs.d.ts +0 -6
- package/components/tabs/smart-tabs.js +29 -68
- package/components/tabs/tab-link.d.ts +0 -8
- package/components/tabs/tab-link.js +1 -4
- package/components/tabs/tab.d.ts +0 -8
- package/components/tabs/tab.js +14 -32
- package/components/tabs/tabs.js +1 -28
- package/components/tag/tag.d.ts +0 -19
- package/components/tag/tag.js +120 -179
- package/components/tags-input/tags-input.d.ts +7 -33
- package/components/tags-input/tags-input.js +224 -339
- package/components/tags-list/tags-list.d.ts +0 -13
- package/components/tags-list/tags-list.js +45 -74
- package/components/text/text.d.ts +0 -7
- package/components/text/text.js +27 -43
- package/components/toggle/toggle.d.ts +0 -15
- package/components/toggle/toggle.js +52 -77
- package/components/tooltip/tooltip.d.ts +4 -10
- package/components/tooltip/tooltip.js +105 -137
- package/components/user-agreement/service.d.ts +2 -1
- package/components/user-agreement/service.js +260 -405
- package/components/user-agreement/user-agreement.d.ts +0 -18
- package/components/user-agreement/user-agreement.js +92 -138
- package/components/user-card/card.d.ts +0 -35
- package/components/user-card/card.js +2 -27
- package/components/user-card/smart-user-card-tooltip.d.ts +0 -5
- package/components/user-card/smart-user-card-tooltip.js +52 -108
- package/components/user-card/tooltip.d.ts +0 -9
- package/components/user-card/tooltip.js +35 -74
- package/components/user-card/user-card.js +1 -26
- package/package.json +4 -6
- package/components/global/prop-types.d.ts +0 -4
- package/components/global/prop-types.js +0 -9
- package/components/global/react-render-adapter.d.ts +0 -1
- package/components/global/react-render-adapter.js +0 -6
- package/components/header/scrollable-section.js +0 -47
- package/components/header/tray-icon.d.ts +0 -1
- package/components/header/tray-icon.js +0 -26
- package/components/storage/storage__fallback.d.ts +0 -79
- package/components/storage/storage__fallback.js +0 -253
- /package/components/{header → scrollable-section}/scrollable-section.d.ts +0 -0
@@ -1,108 +1,3 @@
|
|
1
|
-
function _arrayLikeToArray(r, a) {
|
2
|
-
(null == a || a > r.length) && (a = r.length);
|
3
|
-
for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e];
|
4
|
-
return n;
|
5
|
-
}
|
6
|
-
function _arrayWithHoles(r) {
|
7
|
-
if (Array.isArray(r)) return r;
|
8
|
-
}
|
9
|
-
function _arrayWithoutHoles(r) {
|
10
|
-
if (Array.isArray(r)) return _arrayLikeToArray(r);
|
11
|
-
}
|
12
|
-
function _assertThisInitialized(e) {
|
13
|
-
if (void 0 === e) throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
14
|
-
return e;
|
15
|
-
}
|
16
|
-
function asyncGeneratorStep(n, t, e, r, o, a, c) {
|
17
|
-
try {
|
18
|
-
var i = n[a](c),
|
19
|
-
u = i.value;
|
20
|
-
} catch (n) {
|
21
|
-
return void e(n);
|
22
|
-
}
|
23
|
-
i.done ? t(u) : Promise.resolve(u).then(r, o);
|
24
|
-
}
|
25
|
-
function _asyncToGenerator(n) {
|
26
|
-
return function () {
|
27
|
-
var t = this,
|
28
|
-
e = arguments;
|
29
|
-
return new Promise(function (r, o) {
|
30
|
-
var a = n.apply(t, e);
|
31
|
-
function _next(n) {
|
32
|
-
asyncGeneratorStep(a, r, o, _next, _throw, "next", n);
|
33
|
-
}
|
34
|
-
function _throw(n) {
|
35
|
-
asyncGeneratorStep(a, r, o, _next, _throw, "throw", n);
|
36
|
-
}
|
37
|
-
_next(void 0);
|
38
|
-
});
|
39
|
-
};
|
40
|
-
}
|
41
|
-
function _callSuper(t, o, e) {
|
42
|
-
return o = _getPrototypeOf(o), _possibleConstructorReturn(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], _getPrototypeOf(t).constructor) : o.apply(t, e));
|
43
|
-
}
|
44
|
-
function _classCallCheck(a, n) {
|
45
|
-
if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function");
|
46
|
-
}
|
47
|
-
function _defineProperties(e, r) {
|
48
|
-
for (var t = 0; t < r.length; t++) {
|
49
|
-
var o = r[t];
|
50
|
-
o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, _toPropertyKey(o.key), o);
|
51
|
-
}
|
52
|
-
}
|
53
|
-
function _createClass(e, r, t) {
|
54
|
-
return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", {
|
55
|
-
writable: !1
|
56
|
-
}), e;
|
57
|
-
}
|
58
|
-
function _createForOfIteratorHelper(r, e) {
|
59
|
-
var t = "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"];
|
60
|
-
if (!t) {
|
61
|
-
if (Array.isArray(r) || (t = _unsupportedIterableToArray(r)) || e) {
|
62
|
-
t && (r = t);
|
63
|
-
var n = 0,
|
64
|
-
F = function () {};
|
65
|
-
return {
|
66
|
-
s: F,
|
67
|
-
n: function () {
|
68
|
-
return n >= r.length ? {
|
69
|
-
done: !0
|
70
|
-
} : {
|
71
|
-
done: !1,
|
72
|
-
value: r[n++]
|
73
|
-
};
|
74
|
-
},
|
75
|
-
e: function (r) {
|
76
|
-
throw r;
|
77
|
-
},
|
78
|
-
f: F
|
79
|
-
};
|
80
|
-
}
|
81
|
-
throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
82
|
-
}
|
83
|
-
var o,
|
84
|
-
a = !0,
|
85
|
-
u = !1;
|
86
|
-
return {
|
87
|
-
s: function () {
|
88
|
-
t = t.call(r);
|
89
|
-
},
|
90
|
-
n: function () {
|
91
|
-
var r = t.next();
|
92
|
-
return a = r.done, r;
|
93
|
-
},
|
94
|
-
e: function (r) {
|
95
|
-
u = !0, o = r;
|
96
|
-
},
|
97
|
-
f: function () {
|
98
|
-
try {
|
99
|
-
a || null == t.return || t.return();
|
100
|
-
} finally {
|
101
|
-
if (u) throw o;
|
102
|
-
}
|
103
|
-
}
|
104
|
-
};
|
105
|
-
}
|
106
1
|
function _defineProperty(e, r, t) {
|
107
2
|
return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, {
|
108
3
|
value: t,
|
@@ -111,76 +6,6 @@ function _defineProperty(e, r, t) {
|
|
111
6
|
writable: !0
|
112
7
|
}) : e[r] = t, e;
|
113
8
|
}
|
114
|
-
function _get() {
|
115
|
-
return _get = "undefined" != typeof Reflect && Reflect.get ? Reflect.get.bind() : function (e, t, r) {
|
116
|
-
var p = _superPropBase(e, t);
|
117
|
-
if (p) {
|
118
|
-
var n = Object.getOwnPropertyDescriptor(p, t);
|
119
|
-
return n.get ? n.get.call(arguments.length < 3 ? e : r) : n.value;
|
120
|
-
}
|
121
|
-
}, _get.apply(null, arguments);
|
122
|
-
}
|
123
|
-
function _getPrototypeOf(t) {
|
124
|
-
return _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function (t) {
|
125
|
-
return t.__proto__ || Object.getPrototypeOf(t);
|
126
|
-
}, _getPrototypeOf(t);
|
127
|
-
}
|
128
|
-
function _inherits(t, e) {
|
129
|
-
if ("function" != typeof e && null !== e) throw new TypeError("Super expression must either be null or a function");
|
130
|
-
t.prototype = Object.create(e && e.prototype, {
|
131
|
-
constructor: {
|
132
|
-
value: t,
|
133
|
-
writable: !0,
|
134
|
-
configurable: !0
|
135
|
-
}
|
136
|
-
}), Object.defineProperty(t, "prototype", {
|
137
|
-
writable: !1
|
138
|
-
}), e && _setPrototypeOf(t, e);
|
139
|
-
}
|
140
|
-
function _isNativeReflectConstruct() {
|
141
|
-
try {
|
142
|
-
var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {}));
|
143
|
-
} catch (t) {}
|
144
|
-
return (_isNativeReflectConstruct = function () {
|
145
|
-
return !!t;
|
146
|
-
})();
|
147
|
-
}
|
148
|
-
function _iterableToArray(r) {
|
149
|
-
if ("undefined" != typeof Symbol && null != r[Symbol.iterator] || null != r["@@iterator"]) return Array.from(r);
|
150
|
-
}
|
151
|
-
function _iterableToArrayLimit(r, l) {
|
152
|
-
var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"];
|
153
|
-
if (null != t) {
|
154
|
-
var e,
|
155
|
-
n,
|
156
|
-
i,
|
157
|
-
u,
|
158
|
-
a = [],
|
159
|
-
f = !0,
|
160
|
-
o = !1;
|
161
|
-
try {
|
162
|
-
if (i = (t = t.call(r)).next, 0 === l) {
|
163
|
-
if (Object(t) !== t) return;
|
164
|
-
f = !1;
|
165
|
-
} else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0);
|
166
|
-
} catch (r) {
|
167
|
-
o = !0, n = r;
|
168
|
-
} finally {
|
169
|
-
try {
|
170
|
-
if (!f && null != t.return && (u = t.return(), Object(u) !== u)) return;
|
171
|
-
} finally {
|
172
|
-
if (o) throw n;
|
173
|
-
}
|
174
|
-
}
|
175
|
-
return a;
|
176
|
-
}
|
177
|
-
}
|
178
|
-
function _nonIterableRest() {
|
179
|
-
throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
180
|
-
}
|
181
|
-
function _nonIterableSpread() {
|
182
|
-
throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
183
|
-
}
|
184
9
|
function ownKeys(e, r) {
|
185
10
|
var t = Object.keys(e);
|
186
11
|
if (Object.getOwnPropertySymbols) {
|
@@ -222,327 +47,6 @@ function _objectWithoutPropertiesLoose(r, e) {
|
|
222
47
|
}
|
223
48
|
return t;
|
224
49
|
}
|
225
|
-
function _possibleConstructorReturn(t, e) {
|
226
|
-
if (e && ("object" == typeof e || "function" == typeof e)) return e;
|
227
|
-
if (void 0 !== e) throw new TypeError("Derived constructors may only return object or undefined");
|
228
|
-
return _assertThisInitialized(t);
|
229
|
-
}
|
230
|
-
function _regeneratorRuntime() {
|
231
|
-
_regeneratorRuntime = function () {
|
232
|
-
return e;
|
233
|
-
};
|
234
|
-
var t,
|
235
|
-
e = {},
|
236
|
-
r = Object.prototype,
|
237
|
-
n = r.hasOwnProperty,
|
238
|
-
o = Object.defineProperty || function (t, e, r) {
|
239
|
-
t[e] = r.value;
|
240
|
-
},
|
241
|
-
i = "function" == typeof Symbol ? Symbol : {},
|
242
|
-
a = i.iterator || "@@iterator",
|
243
|
-
c = i.asyncIterator || "@@asyncIterator",
|
244
|
-
u = i.toStringTag || "@@toStringTag";
|
245
|
-
function define(t, e, r) {
|
246
|
-
return Object.defineProperty(t, e, {
|
247
|
-
value: r,
|
248
|
-
enumerable: !0,
|
249
|
-
configurable: !0,
|
250
|
-
writable: !0
|
251
|
-
}), t[e];
|
252
|
-
}
|
253
|
-
try {
|
254
|
-
define({}, "");
|
255
|
-
} catch (t) {
|
256
|
-
define = function (t, e, r) {
|
257
|
-
return t[e] = r;
|
258
|
-
};
|
259
|
-
}
|
260
|
-
function wrap(t, e, r, n) {
|
261
|
-
var i = e && e.prototype instanceof Generator ? e : Generator,
|
262
|
-
a = Object.create(i.prototype),
|
263
|
-
c = new Context(n || []);
|
264
|
-
return o(a, "_invoke", {
|
265
|
-
value: makeInvokeMethod(t, r, c)
|
266
|
-
}), a;
|
267
|
-
}
|
268
|
-
function tryCatch(t, e, r) {
|
269
|
-
try {
|
270
|
-
return {
|
271
|
-
type: "normal",
|
272
|
-
arg: t.call(e, r)
|
273
|
-
};
|
274
|
-
} catch (t) {
|
275
|
-
return {
|
276
|
-
type: "throw",
|
277
|
-
arg: t
|
278
|
-
};
|
279
|
-
}
|
280
|
-
}
|
281
|
-
e.wrap = wrap;
|
282
|
-
var h = "suspendedStart",
|
283
|
-
l = "suspendedYield",
|
284
|
-
f = "executing",
|
285
|
-
s = "completed",
|
286
|
-
y = {};
|
287
|
-
function Generator() {}
|
288
|
-
function GeneratorFunction() {}
|
289
|
-
function GeneratorFunctionPrototype() {}
|
290
|
-
var p = {};
|
291
|
-
define(p, a, function () {
|
292
|
-
return this;
|
293
|
-
});
|
294
|
-
var d = Object.getPrototypeOf,
|
295
|
-
v = d && d(d(values([])));
|
296
|
-
v && v !== r && n.call(v, a) && (p = v);
|
297
|
-
var g = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(p);
|
298
|
-
function defineIteratorMethods(t) {
|
299
|
-
["next", "throw", "return"].forEach(function (e) {
|
300
|
-
define(t, e, function (t) {
|
301
|
-
return this._invoke(e, t);
|
302
|
-
});
|
303
|
-
});
|
304
|
-
}
|
305
|
-
function AsyncIterator(t, e) {
|
306
|
-
function invoke(r, o, i, a) {
|
307
|
-
var c = tryCatch(t[r], t, o);
|
308
|
-
if ("throw" !== c.type) {
|
309
|
-
var u = c.arg,
|
310
|
-
h = u.value;
|
311
|
-
return h && "object" == typeof h && n.call(h, "__await") ? e.resolve(h.__await).then(function (t) {
|
312
|
-
invoke("next", t, i, a);
|
313
|
-
}, function (t) {
|
314
|
-
invoke("throw", t, i, a);
|
315
|
-
}) : e.resolve(h).then(function (t) {
|
316
|
-
u.value = t, i(u);
|
317
|
-
}, function (t) {
|
318
|
-
return invoke("throw", t, i, a);
|
319
|
-
});
|
320
|
-
}
|
321
|
-
a(c.arg);
|
322
|
-
}
|
323
|
-
var r;
|
324
|
-
o(this, "_invoke", {
|
325
|
-
value: function (t, n) {
|
326
|
-
function callInvokeWithMethodAndArg() {
|
327
|
-
return new e(function (e, r) {
|
328
|
-
invoke(t, n, e, r);
|
329
|
-
});
|
330
|
-
}
|
331
|
-
return r = r ? r.then(callInvokeWithMethodAndArg, callInvokeWithMethodAndArg) : callInvokeWithMethodAndArg();
|
332
|
-
}
|
333
|
-
});
|
334
|
-
}
|
335
|
-
function makeInvokeMethod(e, r, n) {
|
336
|
-
var o = h;
|
337
|
-
return function (i, a) {
|
338
|
-
if (o === f) throw Error("Generator is already running");
|
339
|
-
if (o === s) {
|
340
|
-
if ("throw" === i) throw a;
|
341
|
-
return {
|
342
|
-
value: t,
|
343
|
-
done: !0
|
344
|
-
};
|
345
|
-
}
|
346
|
-
for (n.method = i, n.arg = a;;) {
|
347
|
-
var c = n.delegate;
|
348
|
-
if (c) {
|
349
|
-
var u = maybeInvokeDelegate(c, n);
|
350
|
-
if (u) {
|
351
|
-
if (u === y) continue;
|
352
|
-
return u;
|
353
|
-
}
|
354
|
-
}
|
355
|
-
if ("next" === n.method) n.sent = n._sent = n.arg;else if ("throw" === n.method) {
|
356
|
-
if (o === h) throw o = s, n.arg;
|
357
|
-
n.dispatchException(n.arg);
|
358
|
-
} else "return" === n.method && n.abrupt("return", n.arg);
|
359
|
-
o = f;
|
360
|
-
var p = tryCatch(e, r, n);
|
361
|
-
if ("normal" === p.type) {
|
362
|
-
if (o = n.done ? s : l, p.arg === y) continue;
|
363
|
-
return {
|
364
|
-
value: p.arg,
|
365
|
-
done: n.done
|
366
|
-
};
|
367
|
-
}
|
368
|
-
"throw" === p.type && (o = s, n.method = "throw", n.arg = p.arg);
|
369
|
-
}
|
370
|
-
};
|
371
|
-
}
|
372
|
-
function maybeInvokeDelegate(e, r) {
|
373
|
-
var n = r.method,
|
374
|
-
o = e.iterator[n];
|
375
|
-
if (o === t) return r.delegate = null, "throw" === n && e.iterator.return && (r.method = "return", r.arg = t, maybeInvokeDelegate(e, r), "throw" === r.method) || "return" !== n && (r.method = "throw", r.arg = new TypeError("The iterator does not provide a '" + n + "' method")), y;
|
376
|
-
var i = tryCatch(o, e.iterator, r.arg);
|
377
|
-
if ("throw" === i.type) return r.method = "throw", r.arg = i.arg, r.delegate = null, y;
|
378
|
-
var a = i.arg;
|
379
|
-
return a ? a.done ? (r[e.resultName] = a.value, r.next = e.nextLoc, "return" !== r.method && (r.method = "next", r.arg = t), r.delegate = null, y) : a : (r.method = "throw", r.arg = new TypeError("iterator result is not an object"), r.delegate = null, y);
|
380
|
-
}
|
381
|
-
function pushTryEntry(t) {
|
382
|
-
var e = {
|
383
|
-
tryLoc: t[0]
|
384
|
-
};
|
385
|
-
1 in t && (e.catchLoc = t[1]), 2 in t && (e.finallyLoc = t[2], e.afterLoc = t[3]), this.tryEntries.push(e);
|
386
|
-
}
|
387
|
-
function resetTryEntry(t) {
|
388
|
-
var e = t.completion || {};
|
389
|
-
e.type = "normal", delete e.arg, t.completion = e;
|
390
|
-
}
|
391
|
-
function Context(t) {
|
392
|
-
this.tryEntries = [{
|
393
|
-
tryLoc: "root"
|
394
|
-
}], t.forEach(pushTryEntry, this), this.reset(!0);
|
395
|
-
}
|
396
|
-
function values(e) {
|
397
|
-
if (e || "" === e) {
|
398
|
-
var r = e[a];
|
399
|
-
if (r) return r.call(e);
|
400
|
-
if ("function" == typeof e.next) return e;
|
401
|
-
if (!isNaN(e.length)) {
|
402
|
-
var o = -1,
|
403
|
-
i = function next() {
|
404
|
-
for (; ++o < e.length;) if (n.call(e, o)) return next.value = e[o], next.done = !1, next;
|
405
|
-
return next.value = t, next.done = !0, next;
|
406
|
-
};
|
407
|
-
return i.next = i;
|
408
|
-
}
|
409
|
-
}
|
410
|
-
throw new TypeError(typeof e + " is not iterable");
|
411
|
-
}
|
412
|
-
return GeneratorFunction.prototype = GeneratorFunctionPrototype, o(g, "constructor", {
|
413
|
-
value: GeneratorFunctionPrototype,
|
414
|
-
configurable: !0
|
415
|
-
}), o(GeneratorFunctionPrototype, "constructor", {
|
416
|
-
value: GeneratorFunction,
|
417
|
-
configurable: !0
|
418
|
-
}), GeneratorFunction.displayName = define(GeneratorFunctionPrototype, u, "GeneratorFunction"), e.isGeneratorFunction = function (t) {
|
419
|
-
var e = "function" == typeof t && t.constructor;
|
420
|
-
return !!e && (e === GeneratorFunction || "GeneratorFunction" === (e.displayName || e.name));
|
421
|
-
}, e.mark = function (t) {
|
422
|
-
return Object.setPrototypeOf ? Object.setPrototypeOf(t, GeneratorFunctionPrototype) : (t.__proto__ = GeneratorFunctionPrototype, define(t, u, "GeneratorFunction")), t.prototype = Object.create(g), t;
|
423
|
-
}, e.awrap = function (t) {
|
424
|
-
return {
|
425
|
-
__await: t
|
426
|
-
};
|
427
|
-
}, defineIteratorMethods(AsyncIterator.prototype), define(AsyncIterator.prototype, c, function () {
|
428
|
-
return this;
|
429
|
-
}), e.AsyncIterator = AsyncIterator, e.async = function (t, r, n, o, i) {
|
430
|
-
void 0 === i && (i = Promise);
|
431
|
-
var a = new AsyncIterator(wrap(t, r, n, o), i);
|
432
|
-
return e.isGeneratorFunction(r) ? a : a.next().then(function (t) {
|
433
|
-
return t.done ? t.value : a.next();
|
434
|
-
});
|
435
|
-
}, defineIteratorMethods(g), define(g, u, "Generator"), define(g, a, function () {
|
436
|
-
return this;
|
437
|
-
}), define(g, "toString", function () {
|
438
|
-
return "[object Generator]";
|
439
|
-
}), e.keys = function (t) {
|
440
|
-
var e = Object(t),
|
441
|
-
r = [];
|
442
|
-
for (var n in e) r.push(n);
|
443
|
-
return r.reverse(), function next() {
|
444
|
-
for (; r.length;) {
|
445
|
-
var t = r.pop();
|
446
|
-
if (t in e) return next.value = t, next.done = !1, next;
|
447
|
-
}
|
448
|
-
return next.done = !0, next;
|
449
|
-
};
|
450
|
-
}, e.values = values, Context.prototype = {
|
451
|
-
constructor: Context,
|
452
|
-
reset: function (e) {
|
453
|
-
if (this.prev = 0, this.next = 0, this.sent = this._sent = t, this.done = !1, this.delegate = null, this.method = "next", this.arg = t, this.tryEntries.forEach(resetTryEntry), !e) for (var r in this) "t" === r.charAt(0) && n.call(this, r) && !isNaN(+r.slice(1)) && (this[r] = t);
|
454
|
-
},
|
455
|
-
stop: function () {
|
456
|
-
this.done = !0;
|
457
|
-
var t = this.tryEntries[0].completion;
|
458
|
-
if ("throw" === t.type) throw t.arg;
|
459
|
-
return this.rval;
|
460
|
-
},
|
461
|
-
dispatchException: function (e) {
|
462
|
-
if (this.done) throw e;
|
463
|
-
var r = this;
|
464
|
-
function handle(n, o) {
|
465
|
-
return a.type = "throw", a.arg = e, r.next = n, o && (r.method = "next", r.arg = t), !!o;
|
466
|
-
}
|
467
|
-
for (var o = this.tryEntries.length - 1; o >= 0; --o) {
|
468
|
-
var i = this.tryEntries[o],
|
469
|
-
a = i.completion;
|
470
|
-
if ("root" === i.tryLoc) return handle("end");
|
471
|
-
if (i.tryLoc <= this.prev) {
|
472
|
-
var c = n.call(i, "catchLoc"),
|
473
|
-
u = n.call(i, "finallyLoc");
|
474
|
-
if (c && u) {
|
475
|
-
if (this.prev < i.catchLoc) return handle(i.catchLoc, !0);
|
476
|
-
if (this.prev < i.finallyLoc) return handle(i.finallyLoc);
|
477
|
-
} else if (c) {
|
478
|
-
if (this.prev < i.catchLoc) return handle(i.catchLoc, !0);
|
479
|
-
} else {
|
480
|
-
if (!u) throw Error("try statement without catch or finally");
|
481
|
-
if (this.prev < i.finallyLoc) return handle(i.finallyLoc);
|
482
|
-
}
|
483
|
-
}
|
484
|
-
}
|
485
|
-
},
|
486
|
-
abrupt: function (t, e) {
|
487
|
-
for (var r = this.tryEntries.length - 1; r >= 0; --r) {
|
488
|
-
var o = this.tryEntries[r];
|
489
|
-
if (o.tryLoc <= this.prev && n.call(o, "finallyLoc") && this.prev < o.finallyLoc) {
|
490
|
-
var i = o;
|
491
|
-
break;
|
492
|
-
}
|
493
|
-
}
|
494
|
-
i && ("break" === t || "continue" === t) && i.tryLoc <= e && e <= i.finallyLoc && (i = null);
|
495
|
-
var a = i ? i.completion : {};
|
496
|
-
return a.type = t, a.arg = e, i ? (this.method = "next", this.next = i.finallyLoc, y) : this.complete(a);
|
497
|
-
},
|
498
|
-
complete: function (t, e) {
|
499
|
-
if ("throw" === t.type) throw t.arg;
|
500
|
-
return "break" === t.type || "continue" === t.type ? this.next = t.arg : "return" === t.type ? (this.rval = this.arg = t.arg, this.method = "return", this.next = "end") : "normal" === t.type && e && (this.next = e), y;
|
501
|
-
},
|
502
|
-
finish: function (t) {
|
503
|
-
for (var e = this.tryEntries.length - 1; e >= 0; --e) {
|
504
|
-
var r = this.tryEntries[e];
|
505
|
-
if (r.finallyLoc === t) return this.complete(r.completion, r.afterLoc), resetTryEntry(r), y;
|
506
|
-
}
|
507
|
-
},
|
508
|
-
catch: function (t) {
|
509
|
-
for (var e = this.tryEntries.length - 1; e >= 0; --e) {
|
510
|
-
var r = this.tryEntries[e];
|
511
|
-
if (r.tryLoc === t) {
|
512
|
-
var n = r.completion;
|
513
|
-
if ("throw" === n.type) {
|
514
|
-
var o = n.arg;
|
515
|
-
resetTryEntry(r);
|
516
|
-
}
|
517
|
-
return o;
|
518
|
-
}
|
519
|
-
}
|
520
|
-
throw Error("illegal catch attempt");
|
521
|
-
},
|
522
|
-
delegateYield: function (e, r, n) {
|
523
|
-
return this.delegate = {
|
524
|
-
iterator: values(e),
|
525
|
-
resultName: r,
|
526
|
-
nextLoc: n
|
527
|
-
}, "next" === this.method && (this.arg = t), y;
|
528
|
-
}
|
529
|
-
}, e;
|
530
|
-
}
|
531
|
-
function _setPrototypeOf(t, e) {
|
532
|
-
return _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function (t, e) {
|
533
|
-
return t.__proto__ = e, t;
|
534
|
-
}, _setPrototypeOf(t, e);
|
535
|
-
}
|
536
|
-
function _slicedToArray(r, e) {
|
537
|
-
return _arrayWithHoles(r) || _iterableToArrayLimit(r, e) || _unsupportedIterableToArray(r, e) || _nonIterableRest();
|
538
|
-
}
|
539
|
-
function _superPropBase(t, o) {
|
540
|
-
for (; !{}.hasOwnProperty.call(t, o) && null !== (t = _getPrototypeOf(t)););
|
541
|
-
return t;
|
542
|
-
}
|
543
|
-
function _toConsumableArray(r) {
|
544
|
-
return _arrayWithoutHoles(r) || _iterableToArray(r) || _unsupportedIterableToArray(r) || _nonIterableSpread();
|
545
|
-
}
|
546
50
|
function _toPrimitive(t, r) {
|
547
51
|
if ("object" != typeof t || !t) return t;
|
548
52
|
var e = t[Symbol.toPrimitive];
|
@@ -557,12 +61,5 @@ function _toPropertyKey(t) {
|
|
557
61
|
var i = _toPrimitive(t, "string");
|
558
62
|
return "symbol" == typeof i ? i : i + "";
|
559
63
|
}
|
560
|
-
function _unsupportedIterableToArray(r, a) {
|
561
|
-
if (r) {
|
562
|
-
if ("string" == typeof r) return _arrayLikeToArray(r, a);
|
563
|
-
var t = {}.toString.call(r).slice(8, -1);
|
564
|
-
return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0;
|
565
|
-
}
|
566
|
-
}
|
567
64
|
|
568
|
-
export { _defineProperty as _,
|
65
|
+
export { _defineProperty as _, _objectWithoutProperties as a, _objectSpread2 as b, _toPropertyKey as c };
|
@@ -1,6 +1,5 @@
|
|
1
|
-
import {
|
1
|
+
import { a as _objectWithoutProperties, b as _objectSpread2 } from './_rollupPluginBabelHelpers.js';
|
2
2
|
import { memo } from 'react';
|
3
|
-
import PropTypes from 'prop-types';
|
4
3
|
import chevronDown from '@jetbrains/icons/chevron-10px';
|
5
4
|
import classNames from 'classnames';
|
6
5
|
import Icon from '../icon/icon.js';
|
@@ -9,10 +8,12 @@ import { jsxs, jsx } from 'react/jsx-runtime';
|
|
9
8
|
|
10
9
|
var modules_d9414203 = {"light":"light_rui_2ac4","dropdown":"dropdown_rui_8ec5","anchor":"anchor_rui_8ec5","chevron":"chevron_rui_8ec5"};
|
11
10
|
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
11
|
+
const _excluded = ["children", "className"];
|
12
|
+
const Anchor = _ref => {
|
13
|
+
let {
|
14
|
+
children,
|
15
|
+
className
|
16
|
+
} = _ref,
|
16
17
|
restProps = _objectWithoutProperties(_ref, _excluded);
|
17
18
|
return /*#__PURE__*/jsxs(Button, _objectSpread2(_objectSpread2({
|
18
19
|
"data-test-ring-dropdown-anchor": true,
|
@@ -25,10 +26,6 @@ var Anchor = function Anchor(_ref) {
|
|
25
26
|
})]
|
26
27
|
}));
|
27
28
|
};
|
28
|
-
Anchor.propTypes = {
|
29
|
-
children: PropTypes.node,
|
30
|
-
className: PropTypes.string
|
31
|
-
};
|
32
29
|
var Anchor$1 = /*#__PURE__*/memo(Anchor);
|
33
30
|
|
34
31
|
export { Anchor$1 as A, modules_d9414203 as m };
|
@@ -1,33 +1,36 @@
|
|
1
1
|
import classNames from 'classnames';
|
2
2
|
|
3
|
-
var modules_e81895c9 = {"button-shadow":"inset 0 0 0 1px","loaderWidth":"calc(var(--ring-unit)*8)","light":"light_rui_2ac4","heightS":"heightS_rui_6ad6","heightM":"heightM_rui_6ad6","heightL":"heightL_rui_6ad6","button":"button_rui_6ad6","
|
3
|
+
var modules_e81895c9 = {"button-shadow":"inset 0 0 0 1px","loaderWidth":"calc(var(--ring-unit)*8)","light":"light_rui_2ac4","heightS":"heightS_rui_6ad6","heightM":"heightM_rui_6ad6","heightL":"heightL_rui_6ad6","button":"button_rui_6ad6","block":"block_rui_6ad6","inline":"inline_rui_6ad6","icon":"icon_rui_6ad6","withNormalIcon":"withNormalIcon_rui_6ad6","active":"active_rui_6ad6","primaryBlock":"primaryBlock_rui_6ad6","disabled":"disabled_rui_6ad6","loader":"loader_rui_6ad6","loaderBackground":"loaderBackground_rui_6ad6","danger":"danger_rui_6ad6","iconOnly":"iconOnly_rui_6ad6","text-loading":"text-loading_rui_6ad6","progress":"progress_rui_6ad6","delayed":"delayed_rui_6ad6","short":"short_rui_6ad6","dropdownIcon":"dropdownIcon_rui_6ad6","primary":"primary_rui_6ad6"};
|
4
4
|
|
5
5
|
function getButtonClasses(_ref) {
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
inline
|
14
|
-
danger
|
15
|
-
delayed
|
16
|
-
icon
|
17
|
-
height
|
18
|
-
|
19
|
-
|
6
|
+
let {
|
7
|
+
className,
|
8
|
+
active,
|
9
|
+
disabled,
|
10
|
+
loader,
|
11
|
+
primary,
|
12
|
+
short,
|
13
|
+
inline,
|
14
|
+
danger,
|
15
|
+
delayed,
|
16
|
+
icon,
|
17
|
+
height,
|
18
|
+
children
|
19
|
+
} = _ref;
|
20
|
+
const iconOnly = icon && !children;
|
21
|
+
const primaryBlock = primary && !inline;
|
22
|
+
const withNormalIcon = icon && !active && !danger && !primary && !disabled && (!inline || iconOnly);
|
23
|
+
return classNames(modules_e81895c9.button, className, modules_e81895c9["height".concat(height)], inline ? modules_e81895c9.inline : modules_e81895c9.block, {
|
20
24
|
[modules_e81895c9.active]: active,
|
21
25
|
[modules_e81895c9.danger]: danger,
|
22
26
|
[modules_e81895c9.delayed]: delayed,
|
23
|
-
[modules_e81895c9.withIcon]: icon,
|
24
27
|
[modules_e81895c9.withNormalIcon]: withNormalIcon,
|
25
|
-
[modules_e81895c9.
|
26
|
-
[modules_e81895c9.loader]: loader && !icon,
|
28
|
+
[modules_e81895c9.loader]: loader,
|
27
29
|
[modules_e81895c9.primary]: primary,
|
30
|
+
[modules_e81895c9.primaryBlock]: primaryBlock,
|
28
31
|
[modules_e81895c9.short]: short,
|
29
|
-
[modules_e81895c9.
|
30
|
-
[modules_e81895c9.
|
32
|
+
[modules_e81895c9.disabled]: disabled,
|
33
|
+
[modules_e81895c9.iconOnly]: iconOnly
|
31
34
|
});
|
32
35
|
}
|
33
36
|
|
@@ -1,30 +1,20 @@
|
|
1
|
-
import {
|
1
|
+
import { b as _objectSpread2 } from './_rollupPluginBabelHelpers.js';
|
2
2
|
import { PureComponent } from 'react';
|
3
|
-
import PropTypes from 'prop-types';
|
4
3
|
import classNames from 'classnames';
|
5
4
|
import { jsx } from 'react/jsx-runtime';
|
6
5
|
|
7
6
|
var modules_1068e447 = {"button":"button_rui_6ad6","active":"active_rui_6ad6","primary":"primary_rui_6ad6","button-shadow":"i__const_button_shadow_3","buttonGroup":"buttonGroup_rui_f794 common_rui_f794 buttonGroup_rui_5c90","light":"light_rui_2ac4","common":"common_rui_f794","split":"split_rui_f794 common_rui_f794 buttonGroup_rui_5c90","caption":"caption_rui_f794 font_rui_f295","help":"help_rui_f794"};
|
8
7
|
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
8
|
+
class Caption extends PureComponent {
|
9
|
+
render() {
|
10
|
+
const {
|
11
|
+
className
|
12
|
+
} = this.props;
|
13
|
+
const classes = classNames(modules_1068e447.caption, className);
|
14
|
+
return /*#__PURE__*/jsx("span", _objectSpread2(_objectSpread2({}, this.props), {}, {
|
15
|
+
className: classes
|
16
|
+
}));
|
13
17
|
}
|
14
|
-
|
15
|
-
return _createClass(Caption, [{
|
16
|
-
key: "render",
|
17
|
-
value: function render() {
|
18
|
-
var className = this.props.className;
|
19
|
-
var classes = classNames(modules_1068e447.caption, className);
|
20
|
-
return /*#__PURE__*/jsx("span", _objectSpread2(_objectSpread2({}, this.props), {}, {
|
21
|
-
className: classes
|
22
|
-
}));
|
23
|
-
}
|
24
|
-
}]);
|
25
|
-
}(PureComponent);
|
26
|
-
_defineProperty(Caption, "propTypes", {
|
27
|
-
className: PropTypes.node
|
28
|
-
});
|
18
|
+
}
|
29
19
|
|
30
20
|
export { Caption as C, modules_1068e447 as m };
|