@jetbrains/ring-ui-built 6.0.74 → 6.0.75

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.
Files changed (36) hide show
  1. package/components/auth-dialog-service/auth-dialog-service.d.ts +1 -1
  2. package/components/avatar/avatar.d.ts +1 -1
  3. package/components/button/button.d.ts +1 -1
  4. package/components/confirm/confirm.d.ts +1 -1
  5. package/components/contenteditable/contenteditable.d.ts +1 -1
  6. package/components/date-picker/date-picker.d.ts +1 -1
  7. package/components/dropdown/dropdown.d.ts +1 -1
  8. package/components/global/focus-sensor-hoc.d.ts +1 -1
  9. package/components/header/header.d.ts +1 -1
  10. package/components/header/profile.d.ts +1 -1
  11. package/components/icon/icon.d.ts +1 -1
  12. package/components/input/input.d.ts +1 -1
  13. package/components/list/consts.d.ts +1 -1
  14. package/components/list/list.d.ts +1 -1
  15. package/components/loader-inline/loader-inline.d.ts +1 -1
  16. package/components/login-dialog/login-dialog.d.ts +1 -1
  17. package/components/message/message.d.ts +1 -1
  18. package/components/pager/pager.d.ts +1 -1
  19. package/components/popup/popup.d.ts +2 -2
  20. package/components/popup-menu/popup-menu.d.ts +1 -1
  21. package/components/progress-bar/progress-bar.d.ts +1 -1
  22. package/components/query-assist/query-assist.d.ts +1 -1
  23. package/components/select/select.d.ts +3 -3
  24. package/components/select/select__popup.d.ts +1 -1
  25. package/components/table/header.d.ts +1 -1
  26. package/components/table/row.d.ts +1 -1
  27. package/components/tabs/dumb-tabs.d.ts +1 -1
  28. package/components/tag/tag.d.ts +1 -1
  29. package/components/tags-input/tags-input.d.ts +1 -1
  30. package/components/tags-list/tags-list.d.ts +1 -1
  31. package/components/toggle/toggle.d.ts +1 -1
  32. package/components/tooltip/tooltip.d.ts +1 -1
  33. package/components/user-agreement/user-agreement.d.ts +1 -1
  34. package/components/user-card/card.d.ts +1 -1
  35. package/components/user-card/tooltip.d.ts +1 -1
  36. package/package.json +1 -1
@@ -1,5 +1,5 @@
1
1
  import AuthDialog, { AuthDialogProps } from '../auth-dialog/auth-dialog';
2
2
  export declare const reactRoot: import("react-dom/client").Root;
3
- type AuthDialogAttributes = JSX.LibraryManagedAttributes<typeof AuthDialog, AuthDialogProps>;
3
+ type AuthDialogAttributes = React.JSX.LibraryManagedAttributes<typeof AuthDialog, AuthDialogProps>;
4
4
  export default function showAuthDialog(props?: AuthDialogAttributes): () => void;
5
5
  export {};
@@ -49,4 +49,4 @@ export default class Avatar extends PureComponent<AvatarProps> {
49
49
  handleSuccess: () => void;
50
50
  render(): import("react").JSX.Element;
51
51
  }
52
- export type AvatarAttrs = JSX.LibraryManagedAttributes<typeof Avatar, AvatarProps>;
52
+ export type AvatarAttrs = React.JSX.LibraryManagedAttributes<typeof Avatar, AvatarProps>;
@@ -63,6 +63,6 @@ export declare class Button extends PureComponent<ButtonProps> {
63
63
  render(): React.JSX.Element;
64
64
  }
65
65
  export { Size as IconSize };
66
- export type ContainerProps<T extends ButtonProps> = JSX.LibraryManagedAttributes<typeof Button, T>;
66
+ export type ContainerProps<T extends ButtonProps> = React.JSX.LibraryManagedAttributes<typeof Button, T>;
67
67
  export type ButtonAttrs = ContainerProps<ButtonButtonProps> | ContainerProps<ButtonLinkProps>;
68
68
  export default Button;
@@ -47,4 +47,4 @@ export default class Confirm extends PureComponent<ConfirmProps> {
47
47
  onEscPress: () => void;
48
48
  render(): React.JSX.Element;
49
49
  }
50
- export type ConfirmAttributes = JSX.LibraryManagedAttributes<typeof Confirm, ConfirmProps>;
50
+ export type ConfirmAttributes = React.JSX.LibraryManagedAttributes<typeof Confirm, ConfirmProps>;
@@ -30,7 +30,7 @@ declare class ContentEditableBase extends Component<ContentEditableBaseProps> {
30
30
  componentDidUpdate(prevProps: ContentEditableBaseProps): void;
31
31
  render(): import("react").JSX.Element;
32
32
  }
33
- type ContentEditableBaseAttrs = JSX.LibraryManagedAttributes<typeof ContentEditableBase, ContentEditableBaseProps>;
33
+ type ContentEditableBaseAttrs = React.JSX.LibraryManagedAttributes<typeof ContentEditableBase, ContentEditableBaseProps>;
34
34
  export type ContentEditableProps = Omit<ContentEditableBaseAttrs, '__html'>;
35
35
  declare const ContentEditable: {
36
36
  ({ children, ...props }: ContentEditableProps): import("react").JSX.Element;
@@ -77,4 +77,4 @@ export default class DatePicker extends PureComponent<DatePickerProps> {
77
77
  getAnchorText: () => string;
78
78
  render(): React.JSX.Element;
79
79
  }
80
- export type DatePickerAttrs = JSX.LibraryManagedAttributes<typeof DatePicker, DatePickerProps>;
80
+ export type DatePickerAttrs = React.JSX.LibraryManagedAttributes<typeof DatePicker, DatePickerProps>;
@@ -84,5 +84,5 @@ export default class Dropdown extends Component<DropdownProps, DropdownState> {
84
84
  _clearTimer(): void;
85
85
  render(): React.JSX.Element;
86
86
  }
87
- export type DropdownAttrs = JSX.LibraryManagedAttributes<typeof Dropdown, DropdownProps>;
87
+ export type DropdownAttrs = React.JSX.LibraryManagedAttributes<typeof Dropdown, DropdownProps>;
88
88
  export { Anchor };
@@ -14,6 +14,6 @@ export interface FocusSensorAddProps<T extends HTMLElement> {
14
14
  onFocusRestore: () => void;
15
15
  }
16
16
  type RestProps<P, T extends HTMLElement> = Omit<P, keyof FocusSensorAddProps<T>>;
17
- export type FocusSensorProps<P extends FocusSensorAddProps<T>, T extends HTMLElement, C extends ComponentType<P>> = RestProps<JSX.LibraryManagedAttributes<C, P>, T> & FocusSensorOuterProps<T>;
17
+ export type FocusSensorProps<P extends FocusSensorAddProps<T>, T extends HTMLElement, C extends ComponentType<P>> = RestProps<React.JSX.LibraryManagedAttributes<C, P>, T> & FocusSensorOuterProps<T>;
18
18
  export default function focusSensorHOC<T extends HTMLElement, P extends FocusSensorAddProps<T>, C extends ComponentType<P>>(ComposedComponent: C): ComponentType<FocusSensorProps<P, T, typeof ComposedComponent>>;
19
19
  export {};
@@ -23,7 +23,7 @@ declare class Header extends Component<HeaderProps> {
23
23
  };
24
24
  render(): import("react").JSX.Element;
25
25
  }
26
- export type HeaderAttrs = JSX.LibraryManagedAttributes<typeof Header, HeaderProps>;
26
+ export type HeaderAttrs = React.JSX.LibraryManagedAttributes<typeof Header, HeaderProps>;
27
27
  export default Header;
28
28
  export { default as Logo } from './logo';
29
29
  export { default as Tray } from './tray';
@@ -84,4 +84,4 @@ export default class Profile extends PureComponent<ProfileProps> {
84
84
  static Size: typeof Size;
85
85
  render(): string | number | boolean | React.JSX.Element | Iterable<ReactNode> | null | undefined;
86
86
  }
87
- export type ProfileAttrs = JSX.LibraryManagedAttributes<typeof Profile, ProfileProps>;
87
+ export type ProfileAttrs = React.JSX.LibraryManagedAttributes<typeof Profile, ProfileProps>;
@@ -39,5 +39,5 @@ export default class Icon extends PureComponent<IconProps> {
39
39
  } | undefined;
40
40
  render(): import("react").JSX.Element | null;
41
41
  }
42
- export type IconAttrs = JSX.LibraryManagedAttributes<typeof Icon, IconProps>;
42
+ export type IconAttrs = React.JSX.LibraryManagedAttributes<typeof Icon, IconProps>;
43
43
  export { Color, Size };
@@ -70,7 +70,7 @@ export declare class Input extends PureComponent<InputProps> {
70
70
  handleTextareaChange: (e: React.ChangeEvent<HTMLTextAreaElement>) => void;
71
71
  render(): React.JSX.Element;
72
72
  }
73
- export type ContainerProps<P extends InputProps> = JSX.LibraryManagedAttributes<typeof Input, P>;
73
+ export type ContainerProps<P extends InputProps> = React.JSX.LibraryManagedAttributes<typeof Input, P>;
74
74
  export type InputSpecificAttrs = ContainerProps<InputSpecificProps>;
75
75
  export type TextAreaSpecificAttrs = ContainerProps<TextAreaSpecificProps>;
76
76
  export type InputAttrs = InputSpecificAttrs | TextAreaSpecificAttrs;
@@ -52,7 +52,7 @@ export type ListDataItem<T = unknown> = T & Partial<Omit<LinkProps, 'onClick' |
52
52
  label?: ReactNode;
53
53
  rightNodes?: ReactNode;
54
54
  leftNodes?: ReactNode;
55
- tagName?: keyof JSX.IntrinsicElements | null | undefined;
55
+ tagName?: keyof React.JSX.IntrinsicElements | null | undefined;
56
56
  selectedLabel?: string | null | undefined;
57
57
  originalModel?: never;
58
58
  LinkComponent?: ComponentType<ClickableLinkProps> | string | null | undefined;
@@ -204,4 +204,4 @@ export default class List<T = unknown> extends Component<ListProps<T>, ListState
204
204
  /** @override */
205
205
  render(): import("react").JSX.Element;
206
206
  }
207
- export type ListAttrs<T = unknown> = JSX.LibraryManagedAttributes<typeof List, ListProps<T>>;
207
+ export type ListAttrs<T = unknown> = React.JSX.LibraryManagedAttributes<typeof List, ListProps<T>>;
@@ -14,5 +14,5 @@ declare class LoaderInline extends PureComponent<LoaderInlineProps> {
14
14
  };
15
15
  render(): import("react").JSX.Element;
16
16
  }
17
- export type LoaderInlineAtrrs = JSX.LibraryManagedAttributes<typeof LoaderInline, LoaderInlineProps>;
17
+ export type LoaderInlineAtrrs = React.JSX.LibraryManagedAttributes<typeof LoaderInline, LoaderInlineProps>;
18
18
  export default LoaderInline;
@@ -44,4 +44,4 @@ export default class LoginDialog extends Component<LoginDialogProps> {
44
44
  onMessage: (event: MessageEvent) => void;
45
45
  render(): import("react").JSX.Element;
46
46
  }
47
- export type LoginDialogAttrs = JSX.LibraryManagedAttributes<typeof LoginDialog, LoginDialogProps>;
47
+ export type LoginDialogAttrs = React.JSX.LibraryManagedAttributes<typeof LoginDialog, LoginDialogProps>;
@@ -51,5 +51,5 @@ export default class Message extends Component<MessageProps> {
51
51
  getTailOffset(): number;
52
52
  render(): import("react").JSX.Element;
53
53
  }
54
- export type MessageAttrs = JSX.LibraryManagedAttributes<typeof Message, MessageProps>;
54
+ export type MessageAttrs = React.JSX.LibraryManagedAttributes<typeof Message, MessageProps>;
55
55
  export {};
@@ -76,5 +76,5 @@ export default class Pager extends PureComponent<PagerProps> {
76
76
  getPagerContent(): React.JSX.Element;
77
77
  render(): React.JSX.Element;
78
78
  }
79
- export type PagerAttrs = JSX.LibraryManagedAttributes<typeof Pager, PagerProps>;
79
+ export type PagerAttrs = React.JSX.LibraryManagedAttributes<typeof Pager, PagerProps>;
80
80
  export {};
@@ -143,5 +143,5 @@ export default class Popup<P extends BasePopupProps = PopupProps> extends PureCo
143
143
  };
144
144
  render(): React.JSX.Element;
145
145
  }
146
- export type PopupAttrs = JSX.LibraryManagedAttributes<typeof Popup, PopupProps>;
147
- export type BasePopupAttrs = JSX.LibraryManagedAttributes<typeof Popup, BasePopupProps>;
146
+ export type PopupAttrs = React.JSX.LibraryManagedAttributes<typeof Popup, PopupProps>;
147
+ export type BasePopupAttrs = React.JSX.LibraryManagedAttributes<typeof Popup, BasePopupProps>;
@@ -63,7 +63,7 @@ export default class PopupMenu<T = unknown> extends Popup<PopupMenuProps<T>> {
63
63
  /** @override */
64
64
  getInternalContent(): import("react").JSX.Element;
65
65
  }
66
- export type PopupMenuAttrs<T = unknown> = JSX.LibraryManagedAttributes<typeof PopupMenu, PopupMenuProps<T>>;
66
+ export type PopupMenuAttrs<T = unknown> = React.JSX.LibraryManagedAttributes<typeof PopupMenu, PopupMenuProps<T>>;
67
67
  export declare const ListProps: {
68
68
  Type: typeof import("../list/consts").Type;
69
69
  Dimension: {
@@ -61,4 +61,4 @@ export default class ProgressBar extends PureComponent<ProgressBarProps> {
61
61
  progressbarRef: (el: HTMLElement | null) => void;
62
62
  render(): import("react").JSX.Element;
63
63
  }
64
- export type ProgressBarAttrs = JSX.LibraryManagedAttributes<typeof ProgressBar, ProgressBarProps>;
64
+ export type ProgressBarAttrs = React.JSX.LibraryManagedAttributes<typeof ProgressBar, ProgressBarProps>;
@@ -302,6 +302,6 @@ export default class QueryAssist extends Component<QueryAssistProps> {
302
302
  renderActions(): ReactNode[];
303
303
  render(): React.JSX.Element;
304
304
  }
305
- export type QueryAssistAttrs = JSX.LibraryManagedAttributes<typeof QueryAssist, QueryAssistProps>;
305
+ export type QueryAssistAttrs = React.JSX.LibraryManagedAttributes<typeof QueryAssist, QueryAssistProps>;
306
306
  export declare const RerenderableQueryAssist: React.ForwardRefExoticComponent<QueryAssistProps & React.RefAttributes<QueryAssist>>;
307
307
  export {};
@@ -277,8 +277,8 @@ export default class Select<T = unknown> extends Component<SelectProps<T>, Selec
277
277
  renderSelect(activeItemId: string | undefined): React.JSX.Element;
278
278
  render(): React.JSX.Element;
279
279
  }
280
- export type SingleSelectAttrs<T = unknown> = JSX.LibraryManagedAttributes<typeof Select, SingleSelectProps<T>>;
281
- export type MultipleSelectAttrs<T = unknown> = JSX.LibraryManagedAttributes<typeof Select, MultipleSelectProps<T>>;
282
- export type SelectAttrs<T = unknown> = JSX.LibraryManagedAttributes<typeof Select, SelectProps<T>>;
280
+ export type SingleSelectAttrs<T = unknown> = React.JSX.LibraryManagedAttributes<typeof Select, SingleSelectProps<T>>;
281
+ export type MultipleSelectAttrs<T = unknown> = React.JSX.LibraryManagedAttributes<typeof Select, MultipleSelectProps<T>>;
282
+ export type SelectAttrs<T = unknown> = React.JSX.LibraryManagedAttributes<typeof Select, SelectProps<T>>;
283
283
  export declare const RerenderableSelect: React.ForwardRefExoticComponent<SelectProps<unknown> & React.RefAttributes<Select<unknown>>>;
284
284
  export {};
@@ -134,4 +134,4 @@ export default class SelectPopup<T = unknown> extends PureComponent<SelectPopupP
134
134
  popupFilterShortcutsMap: ShortcutsMap;
135
135
  render(): React.JSX.Element;
136
136
  }
137
- export type SelectPopupAttrs<T = unknown> = JSX.LibraryManagedAttributes<typeof SelectPopup, SelectPopupProps<T>>;
137
+ export type SelectPopupAttrs<T = unknown> = React.JSX.LibraryManagedAttributes<typeof SelectPopup, SelectPopupProps<T>>;
@@ -53,4 +53,4 @@ export default class Header extends PureComponent<HeaderProps> {
53
53
  createCells(widths?: never[]): import("react").JSX.Element[];
54
54
  render(): import("react").JSX.Element;
55
55
  }
56
- export type HeaderAttrs = JSX.LibraryManagedAttributes<typeof Header, HeaderProps>;
56
+ export type HeaderAttrs = React.JSX.LibraryManagedAttributes<typeof Header, HeaderProps>;
@@ -58,4 +58,4 @@ export default class Row<T extends SelectionItem> extends PureComponent<RowProps
58
58
  composedRowRef: import("memoize-one").MemoizedFn<(...refs: (React.Ref<HTMLElement> | undefined)[]) => (value: HTMLElement | null) => void>;
59
59
  render(): React.JSX.Element;
60
60
  }
61
- export type RowAttrs<T extends SelectionItem> = JSX.LibraryManagedAttributes<typeof Row, RowProps<T>>;
61
+ export type RowAttrs<T extends SelectionItem> = React.JSX.LibraryManagedAttributes<typeof Row, RowProps<T>>;
@@ -32,5 +32,5 @@ declare class Tabs extends PureComponent<TabsProps> {
32
32
  getTabTitle: (child: ReactElement<TabProps>, i: number) => React.JSX.Element;
33
33
  render(): React.JSX.Element;
34
34
  }
35
- export type TabsAttrs = JSX.LibraryManagedAttributes<typeof Tabs, TabsProps>;
35
+ export type TabsAttrs = React.JSX.LibraryManagedAttributes<typeof Tabs, TabsProps>;
36
36
  export default Tabs;
@@ -62,4 +62,4 @@ export default class Tag extends PureComponent<TagProps> {
62
62
  renderRemoveIcon(): React.JSX.Element | null;
63
63
  render(): React.JSX.Element;
64
64
  }
65
- export type TagAttrs = JSX.LibraryManagedAttributes<typeof Tag, TagProps>;
65
+ export type TagAttrs = React.JSX.LibraryManagedAttributes<typeof Tag, TagProps>;
@@ -135,5 +135,5 @@ export default class TagsInput extends PureComponent<TagsInputProps, TagsInputSt
135
135
  render(): React.JSX.Element;
136
136
  }
137
137
  export declare const RerenderableTagsInput: React.ForwardRefExoticComponent<TagsInputProps & React.RefAttributes<TagsInput>>;
138
- export type TagsInputAttrs = JSX.LibraryManagedAttributes<typeof TagsInput, TagsInputProps>;
138
+ export type TagsInputAttrs = React.JSX.LibraryManagedAttributes<typeof TagsInput, TagsInputProps>;
139
139
  export {};
@@ -43,5 +43,5 @@ export default class TagsList<T extends TagType> extends Component<TagsListProps
43
43
  renderTag(tag: T, focusTag: boolean): React.JSX.Element;
44
44
  render(): React.JSX.Element;
45
45
  }
46
- export type TagsListAttrs<T extends TagType = TagType> = JSX.LibraryManagedAttributes<typeof TagsList, TagsListProps<T>>;
46
+ export type TagsListAttrs<T extends TagType = TagType> = React.JSX.LibraryManagedAttributes<typeof TagsList, TagsListProps<T>>;
47
47
  export {};
@@ -34,5 +34,5 @@ declare class Toggle extends PureComponent<ToggleProps> {
34
34
  };
35
35
  render(): import("react").JSX.Element;
36
36
  }
37
- export type ToggleAttrs = JSX.LibraryManagedAttributes<typeof Toggle, ToggleProps>;
37
+ export type ToggleAttrs = React.JSX.LibraryManagedAttributes<typeof Toggle, ToggleProps>;
38
38
  export default Toggle;
@@ -63,5 +63,5 @@ export default class Tooltip extends Component<TooltipProps> {
63
63
  onNestedTooltipHide: () => void;
64
64
  render(): React.JSX.Element;
65
65
  }
66
- export type TooltipAttrs = JSX.LibraryManagedAttributes<typeof Tooltip, TooltipProps>;
66
+ export type TooltipAttrs = React.JSX.LibraryManagedAttributes<typeof Tooltip, TooltipProps>;
67
67
  export {};
@@ -56,5 +56,5 @@ export default class UserAgreement extends PureComponent<UserAgreementProps> {
56
56
  onScrollToBottom: () => void;
57
57
  render(): import("react").JSX.Element;
58
58
  }
59
- export type UserAgreementAttrs = JSX.LibraryManagedAttributes<typeof UserAgreement, UserAgreementProps>;
59
+ export type UserAgreementAttrs = React.JSX.LibraryManagedAttributes<typeof UserAgreement, UserAgreementProps>;
60
60
  export {};
@@ -68,4 +68,4 @@ export default class UserCard extends PureComponent<UserCardProps> {
68
68
  copyEmail: () => void;
69
69
  render(): React.JSX.Element;
70
70
  }
71
- export type UserCardAttrs = JSX.LibraryManagedAttributes<typeof UserCard, UserCardProps>;
71
+ export type UserCardAttrs = React.JSX.LibraryManagedAttributes<typeof UserCard, UserCardProps>;
@@ -32,5 +32,5 @@ export default class UserCardTooltip extends Component<UserCardTooltipProps> {
32
32
  };
33
33
  render(): import("react").JSX.Element;
34
34
  }
35
- export type UserCardTooltipAttrs = JSX.LibraryManagedAttributes<typeof UserCardTooltip, UserCardTooltipProps>;
35
+ export type UserCardTooltipAttrs = React.JSX.LibraryManagedAttributes<typeof UserCardTooltip, UserCardTooltipProps>;
36
36
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jetbrains/ring-ui-built",
3
- "version": "6.0.74",
3
+ "version": "6.0.75",
4
4
  "description": "JetBrains UI library",
5
5
  "author": "JetBrains",
6
6
  "license": "Apache-2.0",