@jetbrains/ring-ui-built 7.0.124 → 8.0.0-beta.10
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/anchor.js +1 -1
- package/components/_helpers/avatar-info.js +3 -5
- package/components/_helpers/caption.js +1 -1
- package/components/_helpers/icon-svg.js +37 -52
- package/components/_helpers/legacy-table.js +3 -0
- package/components/_helpers/tab-link.js +1 -1
- package/components/_helpers/table.js +2 -2
- package/components/_helpers/theme.js +49 -37
- package/components/alert/alert-actions.js +1 -1
- package/components/alert/alert-heading.js +1 -1
- package/components/alert/alert.js +2 -2
- package/components/alert-service/alert-service.js +2 -2
- package/components/auth/auth-core.js +2 -2
- package/components/auth/auth.js +2 -2
- package/components/auth/down-notification.js +2 -2
- package/components/auth/iframe-flow.js +1 -1
- package/components/auth/storage.js +2 -2
- package/components/auth-dialog/auth-dialog.js +2 -2
- package/components/auth-dialog-service/auth-dialog-service.js +2 -2
- package/components/avatar/avatar-info.js +1 -1
- package/components/avatar/avatar-size.d.ts +0 -4
- package/components/avatar/avatar-size.js +0 -4
- package/components/avatar/avatar.js +1 -8
- package/components/avatar/fallback-avatar.js +3 -48
- package/components/avatar-stack/avatar-stack.js +5 -5
- package/components/banner/banner.js +2 -2
- package/components/button/button.d.ts +0 -4
- package/components/button/button.js +4 -10
- package/components/button-group/button-group.js +1 -1
- package/components/button-toolbar/button-toolbar.js +1 -1
- package/components/checkbox/checkbox.d.ts +1 -1
- package/components/checkbox/checkbox.js +1 -2
- package/components/clipboard/clipboard.js +2 -2
- package/components/collapse/collapse-content.js +35 -43
- package/components/collapse/collapse-context.d.ts +1 -0
- package/components/collapse/collapse-context.js +1 -0
- package/components/collapse/collapse-control.js +5 -5
- package/components/collapse/collapse.js +34 -25
- package/components/collapsible-group/collapsible-group.d.ts +5 -1
- package/components/collapsible-group/collapsible-group.js +80 -98
- package/components/components/util-stories.js +63 -1
- package/components/confirm/confirm.js +2 -2
- package/components/confirm-service/confirm-service.js +4 -4
- package/components/contenteditable/contenteditable.js +4 -5
- package/components/control-help/control-help.js +1 -1
- package/components/control-label/control-label.js +1 -1
- package/components/data-list/data-list.d.ts +4 -4
- package/components/data-list/data-list.js +5 -5
- package/components/data-list/data-list.mock.d.ts +1 -1
- package/components/data-list/data-list.mock.js +2 -2
- package/components/data-list/item.d.ts +1 -1
- package/components/data-list/item.js +3 -3
- package/components/data-list/selection.d.ts +1 -1
- package/components/data-list/selection.js +2 -2
- package/components/data-list/title.js +1 -2
- package/components/date-picker/date-input.js +2 -2
- package/components/date-picker/date-picker.js +2 -3
- package/components/date-picker/date-popup.js +4 -5
- package/components/date-picker/month-names.js +1 -1
- package/components/date-picker/month-slider.js +1 -1
- package/components/date-picker/month.d.ts +0 -2
- package/components/date-picker/month.js +17 -18
- package/components/date-picker/months.js +43 -36
- package/components/date-picker/use-scroll-behavior.js +45 -45
- package/components/date-picker/weekdays.js +1 -1
- package/components/date-picker/years.js +61 -55
- package/components/dialog/dialog.d.ts +2 -2
- package/components/dialog/dialog.js +5 -5
- package/components/dropdown/anchor.js +3 -3
- package/components/dropdown/dropdown.js +3 -3
- package/components/dropdown-menu/dropdown-menu.d.ts +4 -4
- package/components/dropdown-menu/dropdown-menu.js +63 -58
- package/components/editable-heading/editable-heading.d.ts +1 -2
- package/components/editable-heading/editable-heading.js +14 -13
- package/components/error-bubble/error-bubble.js +1 -1
- package/components/error-message/error-message.js +1 -2
- package/components/footer/footer.js +1 -1
- package/components/global/compose-refs.d.ts +2 -1
- package/components/global/compose-refs.js +44 -8
- package/components/global/configuration.d.ts +0 -5
- package/components/global/configuration.js +2 -10
- package/components/global/controls-height.js +1 -1
- package/components/global/create-stateful-context.js +11 -11
- package/components/global/focus-sensor-hoc.js +1 -0
- package/components/global/focus-with-temporary-tabindex.d.ts +11 -0
- package/components/global/focus-with-temporary-tabindex.js +23 -0
- package/components/global/intersection-observer-context.d.ts +46 -0
- package/components/global/intersection-observer-context.js +138 -0
- package/components/global/is-within-interactive-element.d.ts +6 -0
- package/components/global/is-within-interactive-element.js +11 -0
- package/components/global/is-within-navigable-element.d.ts +6 -0
- package/components/global/is-within-navigable-element.js +11 -0
- package/components/global/parse-css-duration.d.ts +5 -0
- package/components/global/parse-css-duration.js +14 -0
- package/components/global/rerender-hoc.d.ts +4 -2
- package/components/global/rerender-hoc.js +11 -24
- package/components/global/schedule-with-cleanup.d.ts +12 -0
- package/components/global/schedule-with-cleanup.js +36 -0
- package/components/{table/selection.d.ts → global/table-selection.d.ts} +15 -15
- package/components/{table/selection.js → global/table-selection.js} +5 -5
- package/components/global/theme.d.ts +4 -3
- package/components/global/theme.js +1 -1
- package/components/global/variables.interface.d.ts +0 -4
- package/components/header/header-icon.js +3 -3
- package/components/header/header.js +3 -3
- package/components/header/links.js +1 -1
- package/components/header/logo.js +1 -2
- package/components/header/profile.js +5 -5
- package/components/header/services.js +3 -3
- package/components/header/smart-profile.js +3 -3
- package/components/header/smart-services.js +3 -3
- package/components/heading/heading.js +1 -1
- package/components/i18n/i18n-context.js +4 -4
- package/components/icon/icon-svg.js +1 -2
- package/components/icon/icon.d.ts +0 -1
- package/components/icon/icon.js +2 -6
- package/components/icon/index.js +1 -2
- package/components/input/input.d.ts +1 -1
- package/components/input/input.js +3 -3
- package/components/internal/reorder-animation-context.js +159 -0
- package/components/internal/reorder-handle.js +750 -0
- package/components/internal/reorder-layout-context.js +141 -0
- package/components/internal/table-header.js +685 -0
- package/components/internal/virtualization.js +368 -0
- package/components/island/adaptive-island-hoc.js +3 -3
- package/components/island/content.d.ts +7 -2
- package/components/island/content.js +27 -18
- package/components/island/header.js +1 -1
- package/components/island/island.js +1 -1
- package/components/{table → legacy-table}/cell.js +1 -1
- package/components/{table → legacy-table}/header-cell.js +2 -3
- package/components/{table → legacy-table}/header.js +2 -3
- package/components/{table → legacy-table}/multitable.d.ts +1 -1
- package/components/{table → legacy-table}/row-with-focus-sensor.js +3 -3
- package/components/{table → legacy-table}/row.d.ts +1 -1
- package/components/{table → legacy-table}/row.js +5 -5
- package/components/legacy-table/selection-adapter.d.ts +6 -0
- package/components/{table → legacy-table}/selection-shortcuts-hoc.d.ts +5 -5
- package/components/{table → legacy-table}/simple-table.d.ts +2 -2
- package/components/{table → legacy-table}/simple-table.js +5 -5
- package/components/{table → legacy-table}/smart-table.d.ts +5 -5
- package/components/{table → legacy-table}/smart-table.js +6 -6
- package/components/legacy-table/table.d.ts +109 -0
- package/components/legacy-table/table.js +369 -0
- package/components/list/consts.d.ts +0 -1
- package/components/list/consts.js +0 -1
- package/components/list/list-item.js +3 -5
- package/components/list/list-users-groups-source.js +1 -2
- package/components/list/list.d.ts +0 -4
- package/components/list/list.js +1 -2
- package/components/login-dialog/login-dialog.js +3 -3
- package/components/login-dialog/service.js +2 -2
- package/components/message/message.js +1 -1
- package/components/pager/pager.js +3 -3
- package/components/popup/popup.js +1 -1
- package/components/popup/popup.target.d.ts +3 -2
- package/components/popup/popup.target.js +32 -28
- package/components/popup-menu/popup-menu.js +1 -1
- package/components/query-assist/query-assist-suggestions.js +1 -2
- package/components/query-assist/query-assist.d.ts +3 -1
- package/components/query-assist/query-assist.js +2 -2
- package/components/radio/radio-item.d.ts +3 -3
- package/components/radio/radio-item.js +33 -19
- package/components/radio/radio.d.ts +2 -2
- package/components/radio/radio.js +2 -2
- package/components/scrollable-section/scrollable-section.js +1 -1
- package/components/select/chevron-button.js +3 -3
- package/components/select/select-filter.js +3 -3
- package/components/select/select-popup.d.ts +3 -2
- package/components/select/select-popup.js +9 -4
- package/components/select/select.d.ts +6 -2
- package/components/select/select.js +5 -4
- package/components/selection-toolbar/selection-toolbar.d.ts +11 -0
- package/components/selection-toolbar/selection-toolbar.js +200 -0
- package/components/slider/slider.js +100 -97
- package/components/storage/storage-local.js +2 -2
- package/components/storage/storage.js +2 -2
- package/components/style.css +1 -1
- package/components/tab-trap/tab-trap.d.ts +3 -3
- package/components/tab-trap/tab-trap.js +83 -80
- package/components/table/default-item-renderer.d.ts +55 -0
- package/components/table/default-item-renderer.js +240 -0
- package/components/table/internal/reorder-animation-context.d.ts +21 -0
- package/components/table/internal/reorder-handle.d.ts +9 -0
- package/components/table/internal/reorder-layout-context.d.ts +16 -0
- package/components/table/internal/table-header.d.ts +1 -0
- package/components/table/internal/virtualization.d.ts +41 -0
- package/components/table/item-virtualization.d.ts +37 -0
- package/components/table/item-virtualization.js +73 -0
- package/components/table/reorder-animation.d.ts +37 -0
- package/components/table/reorder-animation.js +18 -0
- package/components/table/reorder-item-layout.d.ts +32 -0
- package/components/table/reorder-item-layout.js +57 -0
- package/components/table/table-const.d.ts +10 -0
- package/components/table/table-const.js +13 -0
- package/components/table/table-primitives.d.ts +64 -0
- package/components/table/table-primitives.js +180 -0
- package/components/table/table-props.d.ts +304 -0
- package/components/table/table-props.js +1 -0
- package/components/table/table.d.ts +231 -107
- package/components/table/table.js +351 -346
- package/components/tabs/collapsible-more.js +1 -1
- package/components/tabs/collapsible-tab.js +1 -1
- package/components/tabs/collapsible-tabs.js +1 -1
- package/components/tabs/dumb-tabs.js +1 -1
- package/components/tabs/smart-tabs.js +1 -1
- package/components/tabs/tab-link.js +1 -1
- package/components/tabs/tabs.js +1 -1
- package/components/tag/tag.js +1 -1
- package/components/tags-input/tags-input.d.ts +3 -1
- package/components/tags-input/tags-input.js +4 -4
- package/components/tags-list/tags-list.js +2 -2
- package/components/toggle/toggle.js +1 -1
- package/components/tooltip/tooltip.d.ts +2 -1
- package/components/tooltip/tooltip.js +5 -3
- package/components/upload/upload.d.ts +4 -3
- package/components/upload/upload.js +7 -30
- package/components/user-agreement/service.js +3 -3
- package/components/user-agreement/user-agreement.js +2 -2
- package/components/user-card/card.js +4 -4
- package/components/user-card/smart-user-card-tooltip.js +3 -3
- package/components/user-card/tooltip.js +3 -3
- package/components/user-card/user-card.js +5 -5
- package/components/util-stories.d.ts +26 -0
- package/package.json +8 -9
- package/components/__mocks__/old-browsers-message.js +0 -3
- package/components/_helpers/grid.js +0 -3
- package/components/_helpers/sidebar.js +0 -110
- package/components/content-layout/content-layout.d.ts +0 -20
- package/components/content-layout/content-layout.js +0 -50
- package/components/content-layout/sidebar.d.ts +0 -26
- package/components/content-layout/sidebar.js +0 -5
- package/components/date-picker/use-intersection-observer.d.ts +0 -6
- package/components/date-picker/use-intersection-observer.js +0 -93
- package/components/expand/collapsible-group.d.ts +0 -8
- package/components/expand/collapsible-group.js +0 -52
- package/components/global/composeRefs.d.ts +0 -6
- package/components/global/composeRefs.js +0 -9
- package/components/global/use-event-callback.d.ts +0 -4
- package/components/global/use-event-callback.js +0 -49
- package/components/grid/col.d.ts +0 -16
- package/components/grid/col.js +0 -63
- package/components/grid/grid.d.ts +0 -13
- package/components/grid/grid.js +0 -27
- package/components/grid/row.d.ts +0 -21
- package/components/grid/row.js +0 -72
- package/components/old-browsers-message/old-browsers-message-stop.d.ts +0 -1
- package/components/old-browsers-message/old-browsers-message-stop.js +0 -5
- package/components/old-browsers-message/old-browsers-message.d.ts +0 -5
- package/components/old-browsers-message/old-browsers-message.js +0 -89
- package/components/old-browsers-message/white-list.d.ts +0 -2
- package/components/old-browsers-message/white-list.js +0 -30
- package/components/table/selection-adapter.d.ts +0 -6
- /package/components/{table → legacy-table}/cell.d.ts +0 -0
- /package/components/{table → legacy-table}/disable-hover-hoc.d.ts +0 -0
- /package/components/{table → legacy-table}/disable-hover-hoc.js +0 -0
- /package/components/{table → legacy-table}/header-cell.d.ts +0 -0
- /package/components/{table → legacy-table}/header.d.ts +0 -0
- /package/components/{table → legacy-table}/multitable.js +0 -0
- /package/components/{table → legacy-table}/row-with-focus-sensor.d.ts +0 -0
- /package/components/{table → legacy-table}/selection-adapter.js +0 -0
- /package/components/{table → legacy-table}/selection-shortcuts-hoc.js +0 -0
|
@@ -8,7 +8,7 @@ import CollapsibleTabs from './collapsible-tabs.js';
|
|
|
8
8
|
import { CustomItem } from './custom-item.js';
|
|
9
9
|
import { getTabId } from './tabs.utils.js';
|
|
10
10
|
import { jsx, jsxs } from 'react/jsx-runtime';
|
|
11
|
-
import 'react
|
|
11
|
+
import 'react/compiler-runtime';
|
|
12
12
|
import '../link/link.js';
|
|
13
13
|
import '../link/clickable-link.js';
|
|
14
14
|
import '../_helpers/link.js';
|
|
@@ -5,7 +5,7 @@ import { jsx } from 'react/jsx-runtime';
|
|
|
5
5
|
import 'classnames';
|
|
6
6
|
import '../global/memoize.js';
|
|
7
7
|
import '../_helpers/tab-link.js';
|
|
8
|
-
import 'react
|
|
8
|
+
import 'react/compiler-runtime';
|
|
9
9
|
import '../link/link.js';
|
|
10
10
|
import '../link/clickable-link.js';
|
|
11
11
|
import '../_helpers/link.js';
|
package/components/tabs/tabs.js
CHANGED
|
@@ -7,7 +7,7 @@ import 'classnames';
|
|
|
7
7
|
import '../global/memoize.js';
|
|
8
8
|
import '../global/data-tests.js';
|
|
9
9
|
import '../_helpers/tab-link.js';
|
|
10
|
-
import 'react
|
|
10
|
+
import 'react/compiler-runtime';
|
|
11
11
|
import '../link/link.js';
|
|
12
12
|
import '../link/clickable-link.js';
|
|
13
13
|
import 'react/jsx-runtime';
|
package/components/tag/tag.js
CHANGED
|
@@ -10,7 +10,7 @@ import { ControlsHeight } from '../global/configuration.js';
|
|
|
10
10
|
import 'util-deprecate';
|
|
11
11
|
import '../icon/icon.constants.js';
|
|
12
12
|
import '../_helpers/icon-svg.js';
|
|
13
|
-
import 'react
|
|
13
|
+
import 'react/compiler-runtime';
|
|
14
14
|
import '../global/memoize.js';
|
|
15
15
|
import '@jetbrains/icons/chevron-down';
|
|
16
16
|
import '@jetbrains/icons/chevron-12px-down';
|
|
@@ -110,6 +110,8 @@ export default class TagsInput extends PureComponent<TagsInputProps, TagsInputSt
|
|
|
110
110
|
selectRef: (el: Select | null) => void;
|
|
111
111
|
render(): React.JSX.Element;
|
|
112
112
|
}
|
|
113
|
-
export declare const RerenderableTagsInput:
|
|
113
|
+
export declare const RerenderableTagsInput: ({ ref, ...props }: TagsInputProps & {
|
|
114
|
+
ref?: React.Ref<TagsInput> | undefined;
|
|
115
|
+
}) => React.JSX.Element;
|
|
114
116
|
export type TagsInputAttrs = React.JSX.LibraryManagedAttributes<typeof TagsInput, TagsInputProps>;
|
|
115
117
|
export {};
|
|
@@ -17,19 +17,18 @@ import 'dequal';
|
|
|
17
17
|
import '../global/data-tests.js';
|
|
18
18
|
import '../global/typescript-utils.js';
|
|
19
19
|
import '../_helpers/anchor.js';
|
|
20
|
-
import 'react
|
|
20
|
+
import 'react/compiler-runtime';
|
|
21
21
|
import '../button/button.js';
|
|
22
22
|
import '@jetbrains/icons/chevron-down';
|
|
23
23
|
import '@jetbrains/icons/chevron-12px-down';
|
|
24
|
-
import 'util-deprecate';
|
|
25
24
|
import '../icon/icon.js';
|
|
25
|
+
import 'util-deprecate';
|
|
26
26
|
import '../icon/icon.constants.js';
|
|
27
27
|
import '../_helpers/icon-svg.js';
|
|
28
|
-
import '../global/configuration.js';
|
|
29
28
|
import '../link/clickable-link.js';
|
|
30
29
|
import '../_helpers/button.classes.js';
|
|
30
|
+
import '../global/configuration.js';
|
|
31
31
|
import '../avatar/avatar.js';
|
|
32
|
-
import 'core-js/modules/es.array.includes.js';
|
|
33
32
|
import '../global/url.js';
|
|
34
33
|
import '../global/dom.js';
|
|
35
34
|
import '../avatar/fallback-avatar.js';
|
|
@@ -40,6 +39,7 @@ import 'react-dom';
|
|
|
40
39
|
import '../global/schedule-raf.js';
|
|
41
40
|
import '../shortcuts/shortcuts.js';
|
|
42
41
|
import '../shortcuts/core.js';
|
|
42
|
+
import 'core-js/modules/es.array.includes.js';
|
|
43
43
|
import 'combokeys';
|
|
44
44
|
import '../global/sniffer.js';
|
|
45
45
|
import 'sniffr';
|
|
@@ -7,14 +7,14 @@ import '../icon/icon.js';
|
|
|
7
7
|
import 'util-deprecate';
|
|
8
8
|
import '../icon/icon.constants.js';
|
|
9
9
|
import '../_helpers/icon-svg.js';
|
|
10
|
-
import 'react
|
|
11
|
-
import '../global/configuration.js';
|
|
10
|
+
import 'react/compiler-runtime';
|
|
12
11
|
import '../global/memoize.js';
|
|
13
12
|
import '../button/button.js';
|
|
14
13
|
import '@jetbrains/icons/chevron-down';
|
|
15
14
|
import '@jetbrains/icons/chevron-12px-down';
|
|
16
15
|
import '../link/clickable-link.js';
|
|
17
16
|
import '../global/controls-height.js';
|
|
17
|
+
import '../global/configuration.js';
|
|
18
18
|
import '../_helpers/button.classes.js';
|
|
19
19
|
import '../global/data-tests.js';
|
|
20
20
|
|
|
@@ -3,7 +3,7 @@ import classNames from 'classnames';
|
|
|
3
3
|
import joinDataTestAttributes from '../global/data-tests.js';
|
|
4
4
|
import ControlHelp from '../control-help/control-help.js';
|
|
5
5
|
import { jsxs, jsx } from 'react/jsx-runtime';
|
|
6
|
-
import 'react
|
|
6
|
+
import 'react/compiler-runtime';
|
|
7
7
|
|
|
8
8
|
var styles = {"toggle":"ring-toggle-toggle","switch":"ring-toggle-switch","disabled":"ring-toggle-disabled","label":"ring-toggle-label","help":"ring-toggle-help","leftLabel":"ring-toggle-leftLabel","switchWrapper":"ring-toggle-switchWrapper","input":"ring-toggle-input","size16":"ring-toggle-size16","size14":"ring-toggle-size14","size20":"ring-toggle-size20"};
|
|
9
9
|
|
|
@@ -8,7 +8,8 @@ interface Context {
|
|
|
8
8
|
onNestedTooltipHide: () => void;
|
|
9
9
|
}
|
|
10
10
|
declare const TooltipContext: React.Context<Context | undefined>;
|
|
11
|
-
export interface TooltipProps extends Omit<AllHTMLAttributes<
|
|
11
|
+
export interface TooltipProps extends Omit<AllHTMLAttributes<HTMLElement>, 'title'> {
|
|
12
|
+
TagName?: 'span' | 'div' | null | undefined;
|
|
12
13
|
delay?: number | null | undefined;
|
|
13
14
|
selfOverflowOnly?: boolean | null | undefined;
|
|
14
15
|
popupProps?: Partial<PopupAttrs> | null | undefined;
|
|
@@ -15,7 +15,7 @@ import 'combokeys';
|
|
|
15
15
|
import '../global/sniffer.js';
|
|
16
16
|
import 'sniffr';
|
|
17
17
|
import '../tab-trap/tab-trap.js';
|
|
18
|
-
import 'react
|
|
18
|
+
import 'react/compiler-runtime';
|
|
19
19
|
import '../global/configuration.js';
|
|
20
20
|
import '../popup/position.js';
|
|
21
21
|
import '../popup/popup.consts.js';
|
|
@@ -161,6 +161,7 @@ class Tooltip extends Component {
|
|
|
161
161
|
render() {
|
|
162
162
|
const {
|
|
163
163
|
children,
|
|
164
|
+
TagName,
|
|
164
165
|
'data-test': dataTest,
|
|
165
166
|
title,
|
|
166
167
|
delay,
|
|
@@ -182,6 +183,7 @@ class Tooltip extends Component {
|
|
|
182
183
|
onNestedTooltipShow,
|
|
183
184
|
onNestedTooltipHide
|
|
184
185
|
} = this;
|
|
186
|
+
const WrapperElement = TagName || 'span';
|
|
185
187
|
const popup = /*#__PURE__*/jsx(Popup, {
|
|
186
188
|
trapFocus: false,
|
|
187
189
|
anchorElement: this.containerNode,
|
|
@@ -200,12 +202,12 @@ class Tooltip extends Component {
|
|
|
200
202
|
}, popupProps?.className),
|
|
201
203
|
children: title
|
|
202
204
|
});
|
|
203
|
-
return /*#__PURE__*/jsx(TooltipContext
|
|
205
|
+
return /*#__PURE__*/jsx(TooltipContext, {
|
|
204
206
|
value: {
|
|
205
207
|
onNestedTooltipShow,
|
|
206
208
|
onNestedTooltipHide
|
|
207
209
|
},
|
|
208
|
-
children: /*#__PURE__*/jsxs(
|
|
210
|
+
children: /*#__PURE__*/jsxs(WrapperElement, {
|
|
209
211
|
...ariaProps,
|
|
210
212
|
...restProps,
|
|
211
213
|
ref: this.containerRef,
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type ReactNode } from 'react';
|
|
1
|
+
import { type ReactNode, type Ref } from 'react';
|
|
2
2
|
export type UploadVariant = 'empty' | 'error' | 'success';
|
|
3
3
|
interface Props {
|
|
4
4
|
className?: string;
|
|
@@ -10,10 +10,11 @@ interface Props {
|
|
|
10
10
|
accept?: HTMLInputElement['accept'];
|
|
11
11
|
disabled?: boolean;
|
|
12
12
|
variant?: UploadVariant;
|
|
13
|
+
ref?: Ref<UploadHandle>;
|
|
13
14
|
children?: ReactNode;
|
|
14
15
|
}
|
|
15
16
|
export interface UploadHandle {
|
|
16
17
|
openFilePicker: () => void;
|
|
17
18
|
}
|
|
18
|
-
export
|
|
19
|
-
export
|
|
19
|
+
export default function UploadInner({ children, className, onFilesSelected, onFilesRejected, validate, variant, multiple, renderIcon, accept, disabled, ref, }: Props): import("react").JSX.Element;
|
|
20
|
+
export {};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { c } from 'react
|
|
2
|
-
import {
|
|
1
|
+
import { c } from 'react/compiler-runtime';
|
|
2
|
+
import { useRef, useState, useImperativeHandle } from 'react';
|
|
3
3
|
import classNames from 'classnames';
|
|
4
4
|
import attachmentIcon from '@jetbrains/icons/attachment';
|
|
5
5
|
import Icon from '../icon/icon.js';
|
|
@@ -7,7 +7,6 @@ import { jsx, jsxs } from 'react/jsx-runtime';
|
|
|
7
7
|
import 'util-deprecate';
|
|
8
8
|
import '../icon/icon.constants.js';
|
|
9
9
|
import '../_helpers/icon-svg.js';
|
|
10
|
-
import '../global/configuration.js';
|
|
11
10
|
import '../global/memoize.js';
|
|
12
11
|
|
|
13
12
|
var styles = {"upload":"ring-upload-upload","success":"ring-upload-success","error":"ring-upload-error","dragOver":"ring-upload-dragOver","disabled":"ring-upload-disabled","invisibleFileInput":"ring-upload-invisibleFileInput","attachmentIcon":"ring-upload-attachmentIcon"};
|
|
@@ -18,11 +17,11 @@ const defaultRenderIcon = () => /*#__PURE__*/jsx(Icon, {
|
|
|
18
17
|
});
|
|
19
18
|
function UploadInner(t0) {
|
|
20
19
|
const $ = c(29);
|
|
21
|
-
if ($[0] !== "
|
|
20
|
+
if ($[0] !== "d58de564c5913f5a17e892bfa80bc62db12ed2c472d455b1315750c6d5bfd08f") {
|
|
22
21
|
for (let $i = 0; $i < 29; $i += 1) {
|
|
23
22
|
$[$i] = Symbol.for("react.memo_cache_sentinel");
|
|
24
23
|
}
|
|
25
|
-
$[0] = "
|
|
24
|
+
$[0] = "d58de564c5913f5a17e892bfa80bc62db12ed2c472d455b1315750c6d5bfd08f";
|
|
26
25
|
}
|
|
27
26
|
const {
|
|
28
27
|
children,
|
|
@@ -35,7 +34,7 @@ function UploadInner(t0) {
|
|
|
35
34
|
renderIcon: t3,
|
|
36
35
|
accept,
|
|
37
36
|
disabled,
|
|
38
|
-
|
|
37
|
+
ref
|
|
39
38
|
} = t0;
|
|
40
39
|
const validate = t1 === undefined ? _temp : t1;
|
|
41
40
|
const variant = t2 === undefined ? "empty" : t2;
|
|
@@ -55,7 +54,7 @@ function UploadInner(t0) {
|
|
|
55
54
|
t4 = $[1];
|
|
56
55
|
t5 = $[2];
|
|
57
56
|
}
|
|
58
|
-
useImperativeHandle(
|
|
57
|
+
useImperativeHandle(ref, t4, t5);
|
|
59
58
|
let t6;
|
|
60
59
|
if ($[3] !== onFilesRejected || $[4] !== onFilesSelected || $[5] !== validate) {
|
|
61
60
|
t6 = files => {
|
|
@@ -183,27 +182,5 @@ function _temp2(e) {
|
|
|
183
182
|
function _temp() {
|
|
184
183
|
return true;
|
|
185
184
|
}
|
|
186
|
-
const Upload = /*#__PURE__*/forwardRef(function Upload(props, ref) {
|
|
187
|
-
const $ = c(4);
|
|
188
|
-
if ($[0] !== "7d5a4ecc65f01d46fa3e08e16dbed39a1cd6f740a025c62cc404b96900b00084") {
|
|
189
|
-
for (let $i = 0; $i < 4; $i += 1) {
|
|
190
|
-
$[$i] = Symbol.for("react.memo_cache_sentinel");
|
|
191
|
-
}
|
|
192
|
-
$[0] = "7d5a4ecc65f01d46fa3e08e16dbed39a1cd6f740a025c62cc404b96900b00084";
|
|
193
|
-
}
|
|
194
|
-
let t0;
|
|
195
|
-
if ($[1] !== props || $[2] !== ref) {
|
|
196
|
-
t0 = /*#__PURE__*/jsx(UploadInner, {
|
|
197
|
-
...props,
|
|
198
|
-
forwardedRef: ref
|
|
199
|
-
});
|
|
200
|
-
$[1] = props;
|
|
201
|
-
$[2] = ref;
|
|
202
|
-
$[3] = t0;
|
|
203
|
-
} else {
|
|
204
|
-
t0 = $[3];
|
|
205
|
-
}
|
|
206
|
-
return t0;
|
|
207
|
-
});
|
|
208
185
|
|
|
209
|
-
export {
|
|
186
|
+
export { UploadInner as default };
|
|
@@ -19,8 +19,7 @@ import '../icon/icon.js';
|
|
|
19
19
|
import 'util-deprecate';
|
|
20
20
|
import '../icon/icon.constants.js';
|
|
21
21
|
import '../_helpers/icon-svg.js';
|
|
22
|
-
import 'react
|
|
23
|
-
import '../global/configuration.js';
|
|
22
|
+
import 'react/compiler-runtime';
|
|
24
23
|
import '../global/memoize.js';
|
|
25
24
|
import '../loader-inline/loader-inline.js';
|
|
26
25
|
import '../global/data-tests.js';
|
|
@@ -30,6 +29,7 @@ import '@jetbrains/icons/chevron-down';
|
|
|
30
29
|
import '@jetbrains/icons/chevron-12px-down';
|
|
31
30
|
import '../link/clickable-link.js';
|
|
32
31
|
import '../_helpers/button.classes.js';
|
|
32
|
+
import '../global/configuration.js';
|
|
33
33
|
import '../_helpers/theme.js';
|
|
34
34
|
import '../alert/alert-heading.js';
|
|
35
35
|
import '../heading/heading.js';
|
|
@@ -283,7 +283,7 @@ class UserAgreementService {
|
|
|
283
283
|
preview,
|
|
284
284
|
...restOptions
|
|
285
285
|
};
|
|
286
|
-
this.reactRoot.render(/*#__PURE__*/jsx(ControlsHeightContext
|
|
286
|
+
this.reactRoot.render(/*#__PURE__*/jsx(ControlsHeightContext, {
|
|
287
287
|
value: getGlobalControlsHeight(),
|
|
288
288
|
children: /*#__PURE__*/jsx(UserAgreement, {
|
|
289
289
|
...props
|
|
@@ -14,7 +14,7 @@ import '../island/island.js';
|
|
|
14
14
|
import '../global/data-tests.js';
|
|
15
15
|
import '../island/adaptive-island-hoc.js';
|
|
16
16
|
import '../global/linear-function.js';
|
|
17
|
-
import 'react
|
|
17
|
+
import 'react/compiler-runtime';
|
|
18
18
|
import 'element-resize-detector';
|
|
19
19
|
import '../global/schedule-raf.js';
|
|
20
20
|
import '../global/get-uid.js';
|
|
@@ -37,8 +37,8 @@ import '../_helpers/dialog-body-scroll-preventer.js';
|
|
|
37
37
|
import 'scrollbar-width';
|
|
38
38
|
import '@jetbrains/icons/chevron-down';
|
|
39
39
|
import '@jetbrains/icons/chevron-12px-down';
|
|
40
|
-
import 'util-deprecate';
|
|
41
40
|
import '../icon/icon.js';
|
|
41
|
+
import 'util-deprecate';
|
|
42
42
|
import '../icon/icon.constants.js';
|
|
43
43
|
import '../_helpers/icon-svg.js';
|
|
44
44
|
import '../global/memoize.js';
|
|
@@ -12,13 +12,10 @@ export { U as default } from '../_helpers/card.js';
|
|
|
12
12
|
import 'react/jsx-runtime';
|
|
13
13
|
import '../avatar/avatar-size.js';
|
|
14
14
|
import '../icon/icon.constants.js';
|
|
15
|
-
import 'core-js/modules/es.array.includes.js';
|
|
16
|
-
import 'util-deprecate';
|
|
17
15
|
import '../global/url.js';
|
|
18
16
|
import '../global/dom.js';
|
|
19
|
-
import '../global/memoize.js';
|
|
20
17
|
import '../avatar/fallback-avatar.js';
|
|
21
|
-
import 'react
|
|
18
|
+
import 'react/compiler-runtime';
|
|
22
19
|
import '../global/get-uid.js';
|
|
23
20
|
import '../_helpers/avatar-info.js';
|
|
24
21
|
import '../global/data-tests.js';
|
|
@@ -37,9 +34,11 @@ import '../button/button.js';
|
|
|
37
34
|
import '@jetbrains/icons/chevron-down';
|
|
38
35
|
import '@jetbrains/icons/chevron-12px-down';
|
|
39
36
|
import '../global/controls-height.js';
|
|
37
|
+
import 'util-deprecate';
|
|
40
38
|
import '../global/configuration.js';
|
|
41
39
|
import '../_helpers/button.classes.js';
|
|
42
40
|
import '../_helpers/icon-svg.js';
|
|
41
|
+
import '../global/memoize.js';
|
|
43
42
|
import '../_helpers/theme.js';
|
|
44
43
|
import '../alert/alert-heading.js';
|
|
45
44
|
import '../heading/heading.js';
|
|
@@ -55,6 +54,7 @@ import '../popup/popup.js';
|
|
|
55
54
|
import '../global/schedule-raf.js';
|
|
56
55
|
import '../shortcuts/shortcuts.js';
|
|
57
56
|
import '../shortcuts/core.js';
|
|
57
|
+
import 'core-js/modules/es.array.includes.js';
|
|
58
58
|
import 'combokeys';
|
|
59
59
|
import '../global/sniffer.js';
|
|
60
60
|
import 'sniffr';
|
|
@@ -8,18 +8,18 @@ import '../global/data-tests.js';
|
|
|
8
8
|
import '../dropdown/dropdown.js';
|
|
9
9
|
import '../global/typescript-utils.js';
|
|
10
10
|
import '../_helpers/anchor.js';
|
|
11
|
-
import 'react
|
|
11
|
+
import 'react/compiler-runtime';
|
|
12
12
|
import '../button/button.js';
|
|
13
13
|
import '@jetbrains/icons/chevron-down';
|
|
14
14
|
import '@jetbrains/icons/chevron-12px-down';
|
|
15
|
-
import 'util-deprecate';
|
|
16
15
|
import '../icon/icon.js';
|
|
16
|
+
import 'util-deprecate';
|
|
17
17
|
import '../icon/icon.constants.js';
|
|
18
18
|
import '../_helpers/icon-svg.js';
|
|
19
|
-
import '../global/configuration.js';
|
|
20
19
|
import '../global/memoize.js';
|
|
21
20
|
import '../link/clickable-link.js';
|
|
22
21
|
import '../global/controls-height.js';
|
|
22
|
+
import '../global/configuration.js';
|
|
23
23
|
import '../_helpers/button.classes.js';
|
|
24
24
|
import '../popup/popup.js';
|
|
25
25
|
import 'react-dom';
|
|
@@ -7,18 +7,18 @@ import { jsx } from 'react/jsx-runtime';
|
|
|
7
7
|
import '../global/data-tests.js';
|
|
8
8
|
import '../global/typescript-utils.js';
|
|
9
9
|
import '../_helpers/anchor.js';
|
|
10
|
-
import 'react
|
|
10
|
+
import 'react/compiler-runtime';
|
|
11
11
|
import '../button/button.js';
|
|
12
12
|
import '@jetbrains/icons/chevron-down';
|
|
13
13
|
import '@jetbrains/icons/chevron-12px-down';
|
|
14
|
-
import 'util-deprecate';
|
|
15
14
|
import '../icon/icon.js';
|
|
15
|
+
import 'util-deprecate';
|
|
16
16
|
import '../icon/icon.constants.js';
|
|
17
17
|
import '../_helpers/icon-svg.js';
|
|
18
|
-
import '../global/configuration.js';
|
|
19
18
|
import '../global/memoize.js';
|
|
20
19
|
import '../link/clickable-link.js';
|
|
21
20
|
import '../global/controls-height.js';
|
|
21
|
+
import '../global/configuration.js';
|
|
22
22
|
import '../_helpers/button.classes.js';
|
|
23
23
|
import 'react-dom';
|
|
24
24
|
import '../global/get-uid.js';
|
|
@@ -5,13 +5,10 @@ import 'react';
|
|
|
5
5
|
import 'classnames';
|
|
6
6
|
import '@jetbrains/icons/copy';
|
|
7
7
|
import '../avatar/avatar.js';
|
|
8
|
-
import 'core-js/modules/es.array.includes.js';
|
|
9
|
-
import 'util-deprecate';
|
|
10
8
|
import '../global/url.js';
|
|
11
9
|
import '../global/dom.js';
|
|
12
|
-
import '../global/memoize.js';
|
|
13
10
|
import '../avatar/fallback-avatar.js';
|
|
14
|
-
import 'react
|
|
11
|
+
import 'react/compiler-runtime';
|
|
15
12
|
import '../global/get-uid.js';
|
|
16
13
|
import '../avatar/avatar-size.js';
|
|
17
14
|
import 'react/jsx-runtime';
|
|
@@ -30,14 +27,16 @@ import '@jetbrains/icons/warning';
|
|
|
30
27
|
import '@jetbrains/icons/info-filled';
|
|
31
28
|
import '@jetbrains/icons/close';
|
|
32
29
|
import '../icon/icon.js';
|
|
30
|
+
import 'util-deprecate';
|
|
33
31
|
import '../icon/icon.constants.js';
|
|
34
32
|
import '../_helpers/icon-svg.js';
|
|
35
|
-
import '../global/
|
|
33
|
+
import '../global/memoize.js';
|
|
36
34
|
import '../loader-inline/loader-inline.js';
|
|
37
35
|
import '../button/button.js';
|
|
38
36
|
import '@jetbrains/icons/chevron-down';
|
|
39
37
|
import '@jetbrains/icons/chevron-12px-down';
|
|
40
38
|
import '../global/controls-height.js';
|
|
39
|
+
import '../global/configuration.js';
|
|
41
40
|
import '../_helpers/button.classes.js';
|
|
42
41
|
import '../_helpers/theme.js';
|
|
43
42
|
import '../alert/alert-heading.js';
|
|
@@ -57,6 +56,7 @@ import '../popup/popup.js';
|
|
|
57
56
|
import '../global/schedule-raf.js';
|
|
58
57
|
import '../shortcuts/shortcuts.js';
|
|
59
58
|
import '../shortcuts/core.js';
|
|
59
|
+
import 'core-js/modules/es.array.includes.js';
|
|
60
60
|
import 'combokeys';
|
|
61
61
|
import '../global/sniffer.js';
|
|
62
62
|
import 'sniffr';
|
|
@@ -1 +1,27 @@
|
|
|
1
1
|
export declare const hideAddonsPanelParam = "hideAddonsPanel";
|
|
2
|
+
export declare function createRandom(seed: bigint): {
|
|
3
|
+
/**
|
|
4
|
+
* Fractional in [0, 1)
|
|
5
|
+
*/
|
|
6
|
+
(): number;
|
|
7
|
+
/**
|
|
8
|
+
* Integer in [0, to)
|
|
9
|
+
*/
|
|
10
|
+
(to: number): number;
|
|
11
|
+
/**
|
|
12
|
+
* Integer in [from, to)
|
|
13
|
+
*/
|
|
14
|
+
(from: number, to: number): number;
|
|
15
|
+
/**
|
|
16
|
+
* Date in [from, to)
|
|
17
|
+
*/
|
|
18
|
+
(from: Date, to: Date): Date;
|
|
19
|
+
/**
|
|
20
|
+
* Up to random n items (in random order) from the array
|
|
21
|
+
*/
|
|
22
|
+
<T>(array: readonly T[], n: number): T[];
|
|
23
|
+
/**
|
|
24
|
+
* Random item from the array
|
|
25
|
+
*/
|
|
26
|
+
<T>(array: readonly T[]): T;
|
|
27
|
+
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jetbrains/ring-ui-built",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "8.0.0-beta.10",
|
|
4
4
|
"description": "JetBrains UI library",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "JetBrains"
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"prelint-ci": "echo \"##teamcity[importData type='jslint' path='eslint-report.xml']\"",
|
|
57
57
|
"lint-ci": "eslint --format jslint-xml . > eslint-report.xml && npm run stylelint-ci",
|
|
58
58
|
"lint:js": "eslint",
|
|
59
|
-
"postbuild": "cpy './**/*.d.ts' ../dist --parents --cwd=components/
|
|
59
|
+
"postbuild": "cpy './**/*.d.ts' ../dist --parents --cwd=components/",
|
|
60
60
|
"_postinstall": "husky && npm run postinstall:gitconfig",
|
|
61
61
|
"postinstall:gitconfig": "git config blame.ignoreRevsFile .git-blame-ignore-revs",
|
|
62
62
|
"postpublish": "pinst --enable",
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
"storybook-debug": "node --inspect-brk node_modules/@storybook/react/bin -p 9999",
|
|
80
80
|
"stylelint": "stylelint --ignore-path .stylelintignore '**/*.css'",
|
|
81
81
|
"stylelint-ci": "stylelint --ignore-path .stylelintignore --custom-formatter 'scripts/jslint-xml.js' '**/*.css' | xmlappend eslint-report.xml",
|
|
82
|
-
"test": "vitest src
|
|
82
|
+
"test": "vitest src",
|
|
83
83
|
"type-check": "(npm run type-check:create-d-ts && npm run type-check:main && npm run type-check:build) ; npm run type-check:cleanup-d-ts",
|
|
84
84
|
"type-check:create-d-ts": "npx tcm src && npx tcm .storybook",
|
|
85
85
|
"type-check:main": "tsc --noEmit -p tsconfig.json",
|
|
@@ -97,11 +97,11 @@
|
|
|
97
97
|
"readmeFilename": "README.md",
|
|
98
98
|
"devDependencies": {},
|
|
99
99
|
"peerDependencies": {
|
|
100
|
-
"@types/react": ">=
|
|
101
|
-
"@types/react-dom": ">=
|
|
100
|
+
"@types/react": ">=19.2.0",
|
|
101
|
+
"@types/react-dom": ">=19.2.0",
|
|
102
102
|
"core-js": ">=3.0.0",
|
|
103
|
-
"react": ">=
|
|
104
|
-
"react-dom": ">=
|
|
103
|
+
"react": ">=19.2.0",
|
|
104
|
+
"react-dom": ">=19.2.0"
|
|
105
105
|
},
|
|
106
106
|
"peerDependenciesMeta": {
|
|
107
107
|
"@types/react": {
|
|
@@ -113,7 +113,7 @@
|
|
|
113
113
|
},
|
|
114
114
|
"dependencies": {
|
|
115
115
|
"@jetbrains/icons": "^5.23.0",
|
|
116
|
-
"change-case": "^
|
|
116
|
+
"change-case": "^4.1.1",
|
|
117
117
|
"classnames": "^2.5.1",
|
|
118
118
|
"combokeys": "^3.0.1",
|
|
119
119
|
"date-fns": "^4.4.0",
|
|
@@ -127,7 +127,6 @@
|
|
|
127
127
|
"react-compiler-runtime": "^1.0.0",
|
|
128
128
|
"react-movable": "^3.4.1",
|
|
129
129
|
"react-virtualized": "^9.22.6",
|
|
130
|
-
"react-waypoint": "^10.3.0",
|
|
131
130
|
"scrollbar-width": "^3.1.1",
|
|
132
131
|
"simply-uuid": "^1.0.1",
|
|
133
132
|
"sniffr": "^1.4.0",
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
var styles = {"breakpoint-small":"640px","breakpoint-middle":"960px","breakpoint-large":"1200px","large-screen-media":"(min-width: 1200px)","middle-screen-media":"(min-width: 960px) and (max-width: 1199px)","small-screen-media":"(min-width: 640px) and (max-width: 959px)","container-fluid":"ring-grid-container-fluid","container":"ring-grid-container","row":"ring-grid-row","reverse":"ring-grid-reverse","col":"ring-grid-col","col-xs":"ring-grid-col-xs","col-xs-1":"ring-grid-col-xs-1","col-xs-2":"ring-grid-col-xs-2","col-xs-3":"ring-grid-col-xs-3","col-xs-4":"ring-grid-col-xs-4","col-xs-5":"ring-grid-col-xs-5","col-xs-6":"ring-grid-col-xs-6","col-xs-7":"ring-grid-col-xs-7","col-xs-8":"ring-grid-col-xs-8","col-xs-9":"ring-grid-col-xs-9","col-xs-10":"ring-grid-col-xs-10","col-xs-11":"ring-grid-col-xs-11","col-xs-12":"ring-grid-col-xs-12","col-xs-offset-0":"ring-grid-col-xs-offset-0","col-xs-offset-1":"ring-grid-col-xs-offset-1","col-xs-offset-2":"ring-grid-col-xs-offset-2","col-xs-offset-3":"ring-grid-col-xs-offset-3","col-xs-offset-4":"ring-grid-col-xs-offset-4","col-xs-offset-5":"ring-grid-col-xs-offset-5","col-xs-offset-6":"ring-grid-col-xs-offset-6","col-xs-offset-7":"ring-grid-col-xs-offset-7","col-xs-offset-8":"ring-grid-col-xs-offset-8","col-xs-offset-9":"ring-grid-col-xs-offset-9","col-xs-offset-10":"ring-grid-col-xs-offset-10","col-xs-offset-11":"ring-grid-col-xs-offset-11","col-xs-offset-12":"ring-grid-col-xs-offset-12","start-xs":"ring-grid-start-xs","center-xs":"ring-grid-center-xs","end-xs":"ring-grid-end-xs","top-xs":"ring-grid-top-xs","middle-xs":"ring-grid-middle-xs","baseline-xs":"ring-grid-baseline-xs","bottom-xs":"ring-grid-bottom-xs","around-xs":"ring-grid-around-xs","between-xs":"ring-grid-between-xs","first-xs":"ring-grid-first-xs","last-xs":"ring-grid-last-xs","col-sm":"ring-grid-col-sm","col-sm-1":"ring-grid-col-sm-1","col-sm-2":"ring-grid-col-sm-2","col-sm-3":"ring-grid-col-sm-3","col-sm-4":"ring-grid-col-sm-4","col-sm-5":"ring-grid-col-sm-5","col-sm-6":"ring-grid-col-sm-6","col-sm-7":"ring-grid-col-sm-7","col-sm-8":"ring-grid-col-sm-8","col-sm-9":"ring-grid-col-sm-9","col-sm-10":"ring-grid-col-sm-10","col-sm-11":"ring-grid-col-sm-11","col-sm-12":"ring-grid-col-sm-12","col-sm-offset-0":"ring-grid-col-sm-offset-0","col-sm-offset-1":"ring-grid-col-sm-offset-1","col-sm-offset-2":"ring-grid-col-sm-offset-2","col-sm-offset-3":"ring-grid-col-sm-offset-3","col-sm-offset-4":"ring-grid-col-sm-offset-4","col-sm-offset-5":"ring-grid-col-sm-offset-5","col-sm-offset-6":"ring-grid-col-sm-offset-6","col-sm-offset-7":"ring-grid-col-sm-offset-7","col-sm-offset-8":"ring-grid-col-sm-offset-8","col-sm-offset-9":"ring-grid-col-sm-offset-9","col-sm-offset-10":"ring-grid-col-sm-offset-10","col-sm-offset-11":"ring-grid-col-sm-offset-11","col-sm-offset-12":"ring-grid-col-sm-offset-12","start-sm":"ring-grid-start-sm","center-sm":"ring-grid-center-sm","end-sm":"ring-grid-end-sm","top-sm":"ring-grid-top-sm","middle-sm":"ring-grid-middle-sm","baseline-sm":"ring-grid-baseline-sm","bottom-sm":"ring-grid-bottom-sm","around-sm":"ring-grid-around-sm","between-sm":"ring-grid-between-sm","first-sm":"ring-grid-first-sm","last-sm":"ring-grid-last-sm","col-md":"ring-grid-col-md","col-md-1":"ring-grid-col-md-1","col-md-2":"ring-grid-col-md-2","col-md-3":"ring-grid-col-md-3","col-md-4":"ring-grid-col-md-4","col-md-5":"ring-grid-col-md-5","col-md-6":"ring-grid-col-md-6","col-md-7":"ring-grid-col-md-7","col-md-8":"ring-grid-col-md-8","col-md-9":"ring-grid-col-md-9","col-md-10":"ring-grid-col-md-10","col-md-11":"ring-grid-col-md-11","col-md-12":"ring-grid-col-md-12","col-md-offset-0":"ring-grid-col-md-offset-0","col-md-offset-1":"ring-grid-col-md-offset-1","col-md-offset-2":"ring-grid-col-md-offset-2","col-md-offset-3":"ring-grid-col-md-offset-3","col-md-offset-4":"ring-grid-col-md-offset-4","col-md-offset-5":"ring-grid-col-md-offset-5","col-md-offset-6":"ring-grid-col-md-offset-6","col-md-offset-7":"ring-grid-col-md-offset-7","col-md-offset-8":"ring-grid-col-md-offset-8","col-md-offset-9":"ring-grid-col-md-offset-9","col-md-offset-10":"ring-grid-col-md-offset-10","col-md-offset-11":"ring-grid-col-md-offset-11","col-md-offset-12":"ring-grid-col-md-offset-12","start-md":"ring-grid-start-md","center-md":"ring-grid-center-md","end-md":"ring-grid-end-md","top-md":"ring-grid-top-md","middle-md":"ring-grid-middle-md","baseline-md":"ring-grid-baseline-md","bottom-md":"ring-grid-bottom-md","around-md":"ring-grid-around-md","between-md":"ring-grid-between-md","first-md":"ring-grid-first-md","last-md":"ring-grid-last-md","col-lg":"ring-grid-col-lg","col-lg-1":"ring-grid-col-lg-1","col-lg-2":"ring-grid-col-lg-2","col-lg-3":"ring-grid-col-lg-3","col-lg-4":"ring-grid-col-lg-4","col-lg-5":"ring-grid-col-lg-5","col-lg-6":"ring-grid-col-lg-6","col-lg-7":"ring-grid-col-lg-7","col-lg-8":"ring-grid-col-lg-8","col-lg-9":"ring-grid-col-lg-9","col-lg-10":"ring-grid-col-lg-10","col-lg-11":"ring-grid-col-lg-11","col-lg-12":"ring-grid-col-lg-12","col-lg-offset-0":"ring-grid-col-lg-offset-0","col-lg-offset-1":"ring-grid-col-lg-offset-1","col-lg-offset-2":"ring-grid-col-lg-offset-2","col-lg-offset-3":"ring-grid-col-lg-offset-3","col-lg-offset-4":"ring-grid-col-lg-offset-4","col-lg-offset-5":"ring-grid-col-lg-offset-5","col-lg-offset-6":"ring-grid-col-lg-offset-6","col-lg-offset-7":"ring-grid-col-lg-offset-7","col-lg-offset-8":"ring-grid-col-lg-offset-8","col-lg-offset-9":"ring-grid-col-lg-offset-9","col-lg-offset-10":"ring-grid-col-lg-offset-10","col-lg-offset-11":"ring-grid-col-lg-offset-11","col-lg-offset-12":"ring-grid-col-lg-offset-12","start-lg":"ring-grid-start-lg","center-lg":"ring-grid-center-lg","end-lg":"ring-grid-end-lg","top-lg":"ring-grid-top-lg","middle-lg":"ring-grid-middle-lg","baseline-lg":"ring-grid-baseline-lg","bottom-lg":"ring-grid-bottom-lg","around-lg":"ring-grid-around-lg","between-lg":"ring-grid-between-lg","first-lg":"ring-grid-first-lg","last-lg":"ring-grid-last-lg"};
|
|
2
|
-
|
|
3
|
-
export { styles as s };
|