scorer-ui-kit 2.2.0 → 2.2.2
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/dist/Form/index.d.ts +3 -2
- package/dist/Form/molecules/ButtonsStack.d.ts +15 -0
- package/dist/Layouts/atoms/ResizeLine.d.ts +11 -0
- package/dist/Layouts/index.d.ts +29 -2
- package/dist/Layouts/molecules/SplitLayout.d.ts +4 -0
- package/dist/Misc/atoms/Tag.d.ts +5 -0
- package/dist/Misc/molecules/Pagination.d.ts +2 -0
- package/dist/Pages/atoms/PageTitle.d.ts +2 -0
- package/dist/Pages/index.d.ts +2 -1
- package/dist/Pages/molecules/PageHeader.d.ts +9 -1
- package/dist/Tables/atoms/TableRowThumbnail.d.ts +3 -2
- package/dist/Tables/index.d.ts +1 -0
- package/dist/common/ContentPlaceholder.d.ts +4 -0
- package/dist/common/index.d.ts +2 -0
- package/dist/hooks/index.d.ts +2 -1
- package/dist/hooks/useLocalStorage.d.ts +1 -0
- package/dist/index.d.ts +7 -6
- package/dist/index.js +1358 -751
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +1354 -751
- package/dist/index.modern.js.map +1 -1
- package/dist/theme/ThemeHelpers.d.ts +2 -0
- package/dist/theme/ThemeVariables.d.ts +2 -2
- package/dist/theme/variables/Colors.d.ts +1 -0
- package/package.json +1 -1
package/dist/Form/index.d.ts
CHANGED
|
@@ -25,7 +25,8 @@ import AreaUploadManager from './organisms/AreaUploadManager';
|
|
|
25
25
|
import Form from './Form';
|
|
26
26
|
import { ButtonHTMLAttributes } from 'react';
|
|
27
27
|
import SplitButton, { ISplitButtonProps } from './molecules/SplitButton';
|
|
28
|
-
|
|
28
|
+
import ButtonsStack, { IButtonsStack, IButtonStack } from './molecules/ButtonsStack';
|
|
29
|
+
export { Form, Button, ButtonWithIcon, ButtonWithLoading, IconButton, ActionButtons, SmallInput, Input, Label, Checkbox, Switch, PasswordField, TextField, TextArea, TextAreaField, SliderInput, DurationSlider, PercentageSlider, InputFileButton, AvatarUploader, DropArea, CropTool, SelectField, SelectWrapper, AreaUploadManager, RadioButton, SplitButton, ButtonsStack, };
|
|
29
30
|
export declare type TypeFieldState = 'default' | 'disabled' | 'required' | 'valid' | 'invalid' | 'processing';
|
|
30
31
|
export declare type TypeButtonDesigns = 'primary' | 'secondary' | 'danger';
|
|
31
32
|
export declare type TypeButtonSizes = 'xsmall' | 'small' | 'normal' | 'large';
|
|
@@ -36,4 +37,4 @@ interface ButtonProps {
|
|
|
36
37
|
design?: TypeButtonDesigns;
|
|
37
38
|
}
|
|
38
39
|
export declare type IButtonProps = ButtonProps & ButtonHTMLAttributes<HTMLButtonElement>;
|
|
39
|
-
export type { IconButtonData, ISliderMark, ISplitButtonProps };
|
|
40
|
+
export type { IconButtonData, ISliderMark, ISplitButtonProps, IButtonsStack, IButtonStack };
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { IButtonProps } from '..';
|
|
3
|
+
export declare type IButtonType = 'default' | 'icon-button';
|
|
4
|
+
export interface IButtonStack extends IButtonProps {
|
|
5
|
+
id?: string;
|
|
6
|
+
buttonType?: IButtonType;
|
|
7
|
+
icon?: string;
|
|
8
|
+
iconPosition?: 'left' | 'right';
|
|
9
|
+
text: string;
|
|
10
|
+
}
|
|
11
|
+
export interface IButtonsStack {
|
|
12
|
+
buttons: IButtonStack[];
|
|
13
|
+
}
|
|
14
|
+
declare const ButtonsStack: React.FC<IButtonsStack>;
|
|
15
|
+
export default ButtonsStack;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
export declare type TResizeLineStates = 'default' | 'arrow';
|
|
3
|
+
export declare type TResizeLineLayouts = 'horizontal' | 'vertical';
|
|
4
|
+
export declare type TResizeLineDirection = 'up' | 'down' | 'left' | 'right' | undefined;
|
|
5
|
+
interface IResizeLineProps {
|
|
6
|
+
state?: 'default' | 'arrow';
|
|
7
|
+
layout?: TResizeLineLayouts;
|
|
8
|
+
arrowDirection?: TResizeLineDirection;
|
|
9
|
+
}
|
|
10
|
+
declare const ResizeLine: React.FC<IResizeLineProps>;
|
|
11
|
+
export default ResizeLine;
|
package/dist/Layouts/index.d.ts
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
|
|
1
|
+
import { ReactElement } from 'react';
|
|
2
2
|
import ContentLayout from './organisms/ContentLayout';
|
|
3
3
|
import FullWidthContentBlock from './atoms/FullWidthContentBlock';
|
|
4
4
|
import UtilityHeader from './molecules/UtilityHeader';
|
|
5
|
+
import SplitLayout from './molecules/SplitLayout';
|
|
5
6
|
interface IBreadcrumb {
|
|
6
7
|
text: string;
|
|
7
8
|
href: string;
|
|
@@ -19,4 +20,30 @@ export interface IHeaderContent {
|
|
|
19
20
|
PageHeaderArea?: React.ReactNode | React.FC;
|
|
20
21
|
TabsElementArea?: React.ReactNode | React.FC;
|
|
21
22
|
}
|
|
22
|
-
export
|
|
23
|
+
export interface IMainArea {
|
|
24
|
+
content: ReactElement;
|
|
25
|
+
minSize?: number;
|
|
26
|
+
}
|
|
27
|
+
export interface ISideArea {
|
|
28
|
+
content: ReactElement;
|
|
29
|
+
defaultSize?: number;
|
|
30
|
+
minSize?: number;
|
|
31
|
+
maxSize?: number;
|
|
32
|
+
collapsable?: boolean;
|
|
33
|
+
}
|
|
34
|
+
export interface ISplitLayoutProps {
|
|
35
|
+
layout: 'horizontal' | 'vertical';
|
|
36
|
+
reverse?: boolean;
|
|
37
|
+
dividerSize?: number;
|
|
38
|
+
mainArea: IMainArea;
|
|
39
|
+
sideArea: ISideArea;
|
|
40
|
+
persist?: boolean;
|
|
41
|
+
persistenceKey?: string;
|
|
42
|
+
showDebug?: boolean;
|
|
43
|
+
}
|
|
44
|
+
export interface ISplitLayoutHandles {
|
|
45
|
+
open: () => void;
|
|
46
|
+
close: () => void;
|
|
47
|
+
reset: () => void;
|
|
48
|
+
}
|
|
49
|
+
export { ContentLayout, FullWidthContentBlock, UtilityHeader, SplitLayout, };
|
package/dist/Misc/atoms/Tag.d.ts
CHANGED
|
@@ -4,10 +4,15 @@ export declare const TagWrapper: import("styled-components").StyledComponent<"di
|
|
|
4
4
|
hoverColor: ISvgIcons['color'];
|
|
5
5
|
enableHover: boolean;
|
|
6
6
|
size: number;
|
|
7
|
+
tagSize?: TypeTagSize;
|
|
8
|
+
noBorder: boolean;
|
|
7
9
|
}, never>;
|
|
10
|
+
export declare type TypeTagSize = undefined | 'compact' | 'default';
|
|
8
11
|
interface OwnProps {
|
|
9
12
|
label?: string;
|
|
10
13
|
linkTo?: string;
|
|
14
|
+
noBorder?: boolean;
|
|
15
|
+
tagSize?: TypeTagSize;
|
|
11
16
|
}
|
|
12
17
|
export declare type ITag = OwnProps & IconProps;
|
|
13
18
|
declare const Tag: React.FC<ITag>;
|
|
@@ -9,8 +9,10 @@ interface OwnProps {
|
|
|
9
9
|
activePage?: number;
|
|
10
10
|
buttonText?: string;
|
|
11
11
|
itemsText?: string;
|
|
12
|
+
itemsDefaultValue?: number;
|
|
12
13
|
selectWidth?: string;
|
|
13
14
|
selectDisabled?: boolean;
|
|
15
|
+
selectId?: string;
|
|
14
16
|
itemsOptions: IItemsOption[];
|
|
15
17
|
onPageChange: (page: number) => void;
|
|
16
18
|
onItemsChange: (items: number) => void;
|
|
@@ -2,10 +2,12 @@ import React from 'react';
|
|
|
2
2
|
interface IProps {
|
|
3
3
|
title: string;
|
|
4
4
|
icon?: string;
|
|
5
|
+
iconColor?: ISvgIcons['color'];
|
|
5
6
|
areaTitle?: string;
|
|
6
7
|
areaHref?: string;
|
|
7
8
|
updateDocTitle?: boolean;
|
|
8
9
|
hideAreaInDocTitle?: boolean;
|
|
10
|
+
areaTitleBottom?: boolean;
|
|
9
11
|
}
|
|
10
12
|
declare const PageTitle: React.FC<IProps>;
|
|
11
13
|
export default PageTitle;
|
package/dist/Pages/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import PageTitle from './atoms/PageTitle';
|
|
2
2
|
import IntroductionText from './atoms/IntroductionText';
|
|
3
|
-
import PageHeader from './molecules/PageHeader';
|
|
3
|
+
import PageHeader, { IHeaderTag } from './molecules/PageHeader';
|
|
4
4
|
import MultilineContent from './molecules/MultilineContent';
|
|
5
5
|
export { PageTitle, IntroductionText, PageHeader, MultilineContent };
|
|
6
|
+
export type { IHeaderTag };
|
|
@@ -1,4 +1,9 @@
|
|
|
1
|
-
import React from 'react';
|
|
1
|
+
import React, { ReactElement } from 'react';
|
|
2
|
+
export declare type IHeaderTag = {
|
|
3
|
+
label: string;
|
|
4
|
+
linkTo?: string;
|
|
5
|
+
icon?: string;
|
|
6
|
+
};
|
|
2
7
|
interface IProps {
|
|
3
8
|
title: string;
|
|
4
9
|
areaHref?: string;
|
|
@@ -7,6 +12,9 @@ interface IProps {
|
|
|
7
12
|
introductionText?: string;
|
|
8
13
|
updateDocTitle?: boolean;
|
|
9
14
|
hideAreaInDocTitle?: boolean;
|
|
15
|
+
tagList?: IHeaderTag[];
|
|
16
|
+
areaTitleBottom?: boolean;
|
|
17
|
+
rightContent?: React.ReactNode | React.FC | ReactElement;
|
|
10
18
|
}
|
|
11
19
|
declare const PageHeader: React.FC<IProps>;
|
|
12
20
|
export default PageHeader;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { IMediaType } from '../..';
|
|
3
3
|
declare type VideoAspects = '4:3' | '16:9';
|
|
4
|
-
interface
|
|
4
|
+
export interface ITableRowThumbnail {
|
|
5
5
|
image?: string;
|
|
6
6
|
hoverZoom?: boolean;
|
|
7
7
|
aspect?: VideoAspects;
|
|
@@ -10,6 +10,7 @@ interface IProps {
|
|
|
10
10
|
retryImageLoad?: boolean;
|
|
11
11
|
retryLimit?: number;
|
|
12
12
|
closeText?: string;
|
|
13
|
+
onClickThumbnail?: () => void;
|
|
13
14
|
}
|
|
14
|
-
declare const TableRowThumbnail: React.FC<
|
|
15
|
+
declare const TableRowThumbnail: React.FC<ITableRowThumbnail>;
|
|
15
16
|
export default TableRowThumbnail;
|
package/dist/Tables/index.d.ts
CHANGED
package/dist/common/index.d.ts
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
|
+
import { FlexContentPlaceholder } from './ContentPlaceholder';
|
|
1
2
|
export declare const RowCss: import("styled-components").FlattenSimpleInterpolation;
|
|
2
3
|
export declare const ColumnCss: import("styled-components").FlattenSimpleInterpolation;
|
|
3
4
|
export declare const resetButtonStyles: import("styled-components").FlattenSimpleInterpolation;
|
|
4
5
|
export declare const removeAutoFillStyle: import("styled-components").FlattenSimpleInterpolation;
|
|
5
6
|
export declare const EllipsisStyles: import("styled-components").FlattenSimpleInterpolation;
|
|
7
|
+
export { FlexContentPlaceholder };
|
package/dist/hooks/index.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ import { useInterval } from './useInterval';
|
|
|
2
2
|
import { useTo } from './useTo';
|
|
3
3
|
import { useTitle } from './useTitle';
|
|
4
4
|
import { useCopyToClipboard } from './useCopyToClipboard';
|
|
5
|
+
import { useLocalStorage } from './useLocalStorage';
|
|
5
6
|
import { useModal, IModal } from './useModal';
|
|
6
7
|
import { useNotification } from './useNotification';
|
|
7
8
|
import { useClickOutside } from './useClickOutside';
|
|
@@ -10,5 +11,5 @@ import useBreakpoints from './useBreakpoints';
|
|
|
10
11
|
import useMediaQuery from './useMediaQuery';
|
|
11
12
|
import { useMediaModal } from './useMediaModal';
|
|
12
13
|
import useThemeToggle from './useThemeToggle';
|
|
13
|
-
export { useInterval, useTo, useTitle, useCopyToClipboard, useModal, useNotification, useClickOutside, usePoll, useMediaQuery, useBreakpoints, useMediaModal, useThemeToggle };
|
|
14
|
+
export { useInterval, useTo, useTitle, useCopyToClipboard, useModal, useNotification, useClickOutside, usePoll, useMediaQuery, useBreakpoints, useMediaModal, useThemeToggle, useLocalStorage };
|
|
14
15
|
export type { IModal };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function useLocalStorage<T>(key: string, initialValue: T): readonly [T, (value: T | ((val: T) => T)) => void];
|
package/dist/index.d.ts
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
import defaultTheme from './theme';
|
|
2
2
|
import ThemeVariables from './theme/ThemeVariables';
|
|
3
|
+
import { BaseStyles } from './theme/ThemeHelpers';
|
|
3
4
|
import { AlertBar, Notification, INotificationProps, AlertWrapper } from './Alerts';
|
|
4
|
-
import { Form, Button, ButtonWithIcon, ButtonWithLoading, IconButton, IconButtonData, ActionButtons, SmallInput, Input, Label, Switch, Checkbox, PasswordField, TextField, TextArea, TextAreaField, SliderInput, ISliderMark, DurationSlider, PercentageSlider, InputFileButton, DropArea, CropTool, AvatarUploader, SelectField, SelectWrapper, AreaUploadManager, RadioButton, SplitButton, ISplitButtonProps } from './Form';
|
|
5
|
+
import { Form, Button, ButtonWithIcon, ButtonWithLoading, IconButton, IconButtonData, ActionButtons, SmallInput, Input, Label, Switch, Checkbox, PasswordField, TextField, TextArea, TextAreaField, SliderInput, ISliderMark, DurationSlider, PercentageSlider, InputFileButton, DropArea, CropTool, AvatarUploader, SelectField, SelectWrapper, AreaUploadManager, RadioButton, SplitButton, ISplitButtonProps, ButtonsStack, IButtonsStack, IButtonStack } from './Form';
|
|
5
6
|
import { DatePicker, DateInterval, isDateInterval, IFilterDatePicker, FilterDropdownContainer, FilterButton, FilterDropdown, SortDropdown, FilterLayout, FilterInputs, ISearchFilter, IFilterDropdownExt, FiltersResults, IFilterLabel, FilterBar, IFilterDropdownConfig, IFilterType, IFilterItem, IFilterValue, IFilterResult, isFilterItem } from './Filters';
|
|
6
7
|
import Icon, { IconSVGs } from './Icons/Icon';
|
|
7
8
|
import StatusIcon from './Icons/StatusIcon';
|
|
8
9
|
import { LineUI, LineUIVideo, LineUIRTC, LineSetContext, LineReducer } from './LineUI';
|
|
9
|
-
import { IntroductionText, PageHeader, PageTitle, MultilineContent } from './Pages';
|
|
10
|
+
import { IntroductionText, PageHeader, PageTitle, MultilineContent, IHeaderTag } from './Pages';
|
|
10
11
|
import { TypeTable, TableRowThumbnail, TableHeaderTitle, EditCell } from './Tables';
|
|
11
12
|
import { Controls, PTZProvider, PTZReducer, usePTZ, PTZContext } from './PTZControl';
|
|
12
13
|
import { CameraPanels, CameraPanelWrapper, ICameraPanel, IMediaStream, IPanelMetaData } from './CameraPanels';
|
|
@@ -14,13 +15,13 @@ import { Tag, TagList, ITag, ITagList, TagListWrapper, MediaBox, BasicSearchInpu
|
|
|
14
15
|
import { ConfirmationModal } from './Modals';
|
|
15
16
|
import { useInterval, useTo, useTitle, useCopyToClipboard, useModal, useNotification, useClickOutside, useMediaModal, IModal, usePoll, useThemeToggle } from './hooks';
|
|
16
17
|
import { NotificationProvider, ModalContext, ModalProvider } from './context';
|
|
17
|
-
import { resetButtonStyles } from './common';
|
|
18
|
+
import { resetButtonStyles, FlexContentPlaceholder } from './common';
|
|
18
19
|
import Spinner from './Indicators/Spinner';
|
|
19
20
|
import WebRTCClient from './WebRTCClient';
|
|
20
|
-
import { ContentLayout, FullWidthContentBlock, UtilityHeader, IHeaderContent, IUtilityHeader } from './Layouts';
|
|
21
|
+
import { ContentLayout, FullWidthContentBlock, UtilityHeader, SplitLayout, IHeaderContent, IUtilityHeader, ISplitLayoutHandles } from './Layouts';
|
|
21
22
|
import { MainMenu, TopBar, Content, Layout, MainContainer, SidebarBox, SidebarLink, SidebarHeading, Logo, SidebarLinkHeading, BackLink, Sidebar, GlobalUI, INotificationItem, INotificationsHistory, ICustomDrawer } from './Global';
|
|
22
23
|
import { Tabs, TabContext, Tab, TabList, TabContent, TabWithIcon, TabsWithIconBar, ITabIcon } from './Tabs';
|
|
23
|
-
export { defaultTheme, ThemeVariables, AlertBar, Notification, AlertWrapper, LineUI, LineUIVideo, LineUIRTC, LineSetContext, LineReducer, Form, Button, ButtonWithIcon, ButtonWithLoading, IconButton, ActionButtons, Input, SmallInput, Label, Switch, Checkbox, PasswordField, TextField, TextArea, TextAreaField, SliderInput, DurationSlider, PercentageSlider, InputFileButton, DropArea, CropTool, AvatarUploader, SelectField, SelectWrapper, AreaUploadManager, RadioButton, SplitButton, ConfirmationModal, DatePicker, FilterDropdownContainer, FilterButton, FilterDropdown, SortDropdown, FilterLayout, FilterInputs, FiltersResults, FilterBar, isFilterItem, isDateInterval, Icon, IconSVGs, StatusIcon, IntroductionText, PageHeader, PageTitle, MultilineContent, Controls, PTZProvider, PTZContext, PTZReducer, usePTZ, TypeTable, TableRowThumbnail, TableHeaderTitle, EditCell, useInterval, useTo, useTitle, useCopyToClipboard, useClickOutside, usePoll, useMediaModal, useThemeToggle, resetButtonStyles, Spinner, WebRTCClient, MainMenu, TopBar, MainContainer, Layout, Content, SidebarBox, SidebarLink, SidebarHeading, Logo, SidebarLinkHeading, BackLink, Sidebar, GlobalUI, ContentLayout, FullWidthContentBlock, UtilityHeader, Tabs, TabContext, Tab, TabList, TabContent, TabWithIcon, TabsWithIconBar, CameraPanels, CameraPanelWrapper, Tag, TagList, TagListWrapper, MediaBox, BasicSearchInput, DebouncedSearcher, ActionsBar, Pagination, NotificationProvider, useNotification, ModalContext, ModalProvider, useModal };
|
|
24
|
+
export { defaultTheme, ThemeVariables, BaseStyles, AlertBar, Notification, AlertWrapper, LineUI, LineUIVideo, LineUIRTC, LineSetContext, LineReducer, Form, Button, ButtonWithIcon, ButtonWithLoading, IconButton, ActionButtons, Input, SmallInput, Label, Switch, Checkbox, PasswordField, TextField, TextArea, TextAreaField, SliderInput, DurationSlider, PercentageSlider, InputFileButton, DropArea, CropTool, AvatarUploader, SelectField, SelectWrapper, AreaUploadManager, RadioButton, SplitButton, ButtonsStack, ConfirmationModal, DatePicker, FilterDropdownContainer, FilterButton, FilterDropdown, SortDropdown, FilterLayout, FilterInputs, FiltersResults, FilterBar, isFilterItem, isDateInterval, Icon, IconSVGs, StatusIcon, IntroductionText, PageHeader, PageTitle, MultilineContent, Controls, PTZProvider, PTZContext, PTZReducer, usePTZ, TypeTable, TableRowThumbnail, TableHeaderTitle, EditCell, useInterval, useTo, useTitle, useCopyToClipboard, useClickOutside, usePoll, useMediaModal, useThemeToggle, resetButtonStyles, FlexContentPlaceholder, Spinner, WebRTCClient, MainMenu, TopBar, MainContainer, Layout, Content, SidebarBox, SidebarLink, SidebarHeading, Logo, SidebarLinkHeading, BackLink, Sidebar, GlobalUI, ContentLayout, FullWidthContentBlock, UtilityHeader, SplitLayout, Tabs, TabContext, Tab, TabList, TabContent, TabWithIcon, TabsWithIconBar, CameraPanels, CameraPanelWrapper, Tag, TagList, TagListWrapper, MediaBox, BasicSearchInput, DebouncedSearcher, ActionsBar, Pagination, NotificationProvider, useNotification, ModalContext, ModalProvider, useModal };
|
|
24
25
|
/**
|
|
25
26
|
* Values based on colors.feedback from theme
|
|
26
27
|
*/
|
|
@@ -28,4 +29,4 @@ export declare type IFeedbackColor = 'error' | 'warning' | 'info' | 'success' |
|
|
|
28
29
|
export declare type ITimeUnit = 'seconds' | 'minutes' | 'hours';
|
|
29
30
|
export declare type IMediaType = 'img' | 'video';
|
|
30
31
|
export declare type IStatusDot = 'caution' | 'danger' | 'good' | 'neutral' | 'highlight';
|
|
31
|
-
export type { IModal, INotificationProps, IconButtonData, ITag, ITagList, ISliderMark, INotificationItem, INotificationsHistory, ICustomDrawer, ISearchFilter, IFilterDropdownExt, IFilterLabel, IFilterDropdownConfig, ITabIcon, IFilterType, IFilterItem, IFilterValue, IFilterResult, DateInterval, IFilterDatePicker, ICameraPanel, IMediaStream, IPanelMetaData, IActionsButton, ISplitButtonProps, IItemsOption, IPagination, IHeaderContent, IUtilityHeader };
|
|
32
|
+
export type { IModal, INotificationProps, IconButtonData, ITag, ITagList, ISliderMark, INotificationItem, INotificationsHistory, ICustomDrawer, ISearchFilter, IFilterDropdownExt, IFilterLabel, IFilterDropdownConfig, ITabIcon, IFilterType, IFilterItem, IFilterValue, IFilterResult, DateInterval, IFilterDatePicker, ICameraPanel, IMediaStream, IPanelMetaData, IActionsButton, ISplitButtonProps, IHeaderTag, IItemsOption, IPagination, IHeaderContent, IUtilityHeader, IButtonsStack, IButtonStack, ISplitLayoutHandles };
|