scorer-ui-kit 1.7.19 → 1.7.20
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/Filters/index.d.ts +2 -1
- package/dist/Filters/molecules/FilterLayout.d.ts +24 -0
- package/dist/Global/atoms/UserDrawerMeta.d.ts +2 -0
- package/dist/Global/index.d.ts +6 -1
- package/dist/LineUI/LineSet.d.ts +2 -0
- package/dist/LineUI/LineUI.d.ts +2 -0
- package/dist/LineUI/LineUnit.d.ts +2 -0
- package/dist/Tables/atoms/TableRowThumbnail.d.ts +1 -0
- package/dist/Tables/atoms/TypeTableRow.d.ts +1 -0
- package/dist/Tables/organisms/TypeTable.d.ts +1 -0
- package/dist/index.d.ts +2 -2
- package/dist/index.js +899 -554
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +899 -555
- package/dist/index.modern.js.map +1 -1
- package/dist/themes/light/custom.d.ts +52 -38
- package/package.json +1 -1
package/dist/Filters/index.d.ts
CHANGED
|
@@ -3,9 +3,10 @@ import FilterDropdownContainer from './atoms/FilterDropdownContainer';
|
|
|
3
3
|
import FilterButton from './atoms/FilterButton';
|
|
4
4
|
import FilterDropdown from './molecules/FilterDropdown';
|
|
5
5
|
import SortDropdown from './molecules/SortDropdown';
|
|
6
|
+
import FilterLayout from './molecules/FilterLayout';
|
|
6
7
|
import FilterInputs, { IFilterInputs } from './molecules/FilterInputs';
|
|
7
8
|
import FiltersResults, { IFilterLabel } from './molecules/FiltersResults';
|
|
8
9
|
import FilterBar from './organisms/FilterBar';
|
|
9
10
|
import { IFilterType, IFilterItem, IFilterResult, IFilterValue, ISearchFilter, IFilterDropdownExt, IFilterDropdownConfig, IFilterDatePicker, isFilterItem } from './FilterTypes';
|
|
10
|
-
export { DatePicker, FilterDropdownContainer, FilterButton, FilterDropdown, SortDropdown, FilterInputs, FiltersResults, FilterBar, isFilterItem, isDateInterval, };
|
|
11
|
+
export { DatePicker, FilterDropdownContainer, FilterButton, FilterDropdown, SortDropdown, FilterLayout, FilterInputs, FiltersResults, FilterBar, isFilterItem, isDateInterval, };
|
|
11
12
|
export type { ISearchFilter, IFilterInputs, IFilterDropdownExt, IFilterLabel, IFilterDropdownConfig, IFilterType, IFilterItem, IFilterResult, IFilterValue, DateInterval, IFilterDatePicker };
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
interface IOptionsItem {
|
|
3
|
+
id: string;
|
|
4
|
+
icon: string;
|
|
5
|
+
tooltipText: string;
|
|
6
|
+
}
|
|
7
|
+
interface IProps {
|
|
8
|
+
disabled?: boolean;
|
|
9
|
+
onToggleOpenCallback?: (isOpen: boolean) => void;
|
|
10
|
+
onCloseCallback?: () => void;
|
|
11
|
+
pageSizeOptions?: number[];
|
|
12
|
+
onPageSizeChange: (size: number) => void;
|
|
13
|
+
defaultPage?: number;
|
|
14
|
+
defaultPageSize?: number;
|
|
15
|
+
getLayout: (layout: string) => void;
|
|
16
|
+
layoutText?: string;
|
|
17
|
+
pageSizeText?: string;
|
|
18
|
+
contentArray: IOptionsItem[];
|
|
19
|
+
minWidth?: number;
|
|
20
|
+
minHeight?: number;
|
|
21
|
+
hasPageSettings?: boolean;
|
|
22
|
+
}
|
|
23
|
+
declare const FilterLayout: React.FC<IProps>;
|
|
24
|
+
export default FilterLayout;
|
|
@@ -3,6 +3,8 @@ import { IUserDrawerMeta } from '..';
|
|
|
3
3
|
interface IProps {
|
|
4
4
|
item: IUserDrawerMeta;
|
|
5
5
|
onUserDrawerMetaClick?: () => void;
|
|
6
|
+
includeCopyTitle?: boolean;
|
|
7
|
+
copySuccessMessage?: string;
|
|
6
8
|
}
|
|
7
9
|
declare const UserDrawerMeta: React.FC<IProps>;
|
|
8
10
|
export default UserDrawerMeta;
|
package/dist/Global/index.d.ts
CHANGED
|
@@ -21,6 +21,7 @@ export interface IUserDrawerMeta {
|
|
|
21
21
|
icon?: string;
|
|
22
22
|
subTitle?: string;
|
|
23
23
|
notes?: string;
|
|
24
|
+
hasCopyIcon?: boolean;
|
|
24
25
|
}
|
|
25
26
|
export interface IMenuItemSubmenu {
|
|
26
27
|
title: string;
|
|
@@ -47,7 +48,7 @@ export interface ICustomDrawer {
|
|
|
47
48
|
width?: string;
|
|
48
49
|
}
|
|
49
50
|
export interface IUserDrawerFooter {
|
|
50
|
-
icon
|
|
51
|
+
icon?: string;
|
|
51
52
|
title: string;
|
|
52
53
|
}
|
|
53
54
|
export interface IUserDrawerMeta {
|
|
@@ -55,6 +56,7 @@ export interface IUserDrawerMeta {
|
|
|
55
56
|
title?: string;
|
|
56
57
|
subTitle?: string;
|
|
57
58
|
notes?: string;
|
|
59
|
+
hasCopyIcon?: boolean;
|
|
58
60
|
}
|
|
59
61
|
export interface ITopBar {
|
|
60
62
|
hasNotifications?: boolean;
|
|
@@ -78,6 +80,9 @@ export interface ITopBar {
|
|
|
78
80
|
userDrawerFooter?: IUserDrawerFooter;
|
|
79
81
|
userDrawerMeta?: IUserDrawerMeta[];
|
|
80
82
|
hasUserDrawerMeta?: boolean;
|
|
83
|
+
copySuccessMessage?: string;
|
|
84
|
+
includeCopyTitle?: boolean;
|
|
85
|
+
hasUserDrawerFooter?: boolean;
|
|
81
86
|
}
|
|
82
87
|
export interface INotificationItem {
|
|
83
88
|
imgUrl?: string;
|
package/dist/LineUI/LineSet.d.ts
CHANGED
|
@@ -10,6 +10,8 @@ interface ILineSetProps {
|
|
|
10
10
|
onLineMoveEnd: () => void;
|
|
11
11
|
onLineClick: (lineSetId: number) => void;
|
|
12
12
|
getCTM: () => DOMMatrix | null;
|
|
13
|
+
lineClickSensingBorder?: string;
|
|
14
|
+
hasClickSensingBorder?: boolean;
|
|
13
15
|
}
|
|
14
16
|
declare const LineSet: React.FC<ILineSetProps>;
|
|
15
17
|
export default LineSet;
|
package/dist/LineUI/LineUI.d.ts
CHANGED
|
@@ -10,6 +10,8 @@ interface LineUIProps {
|
|
|
10
10
|
onLineClick?: (lineSetId: number) => void;
|
|
11
11
|
options?: LineUIOptions;
|
|
12
12
|
showDirectionMark?: boolean;
|
|
13
|
+
lineClickSensingBorder?: string;
|
|
14
|
+
hasClickSensingBorder?: boolean;
|
|
13
15
|
}
|
|
14
16
|
declare const LineUI: React.FC<LineUIProps>;
|
|
15
17
|
export default LineUI;
|
|
@@ -16,6 +16,8 @@ interface ILineUnitProps {
|
|
|
16
16
|
styling?: string;
|
|
17
17
|
showSmallDirectionMark?: boolean;
|
|
18
18
|
overrideShowMoveHandle?: boolean;
|
|
19
|
+
lineClickSensingBorder?: string;
|
|
20
|
+
hasClickSensingBorder?: boolean;
|
|
19
21
|
}
|
|
20
22
|
declare const LineUnit: React.FC<ILineUnitProps>;
|
|
21
23
|
export default LineUnit;
|
|
@@ -16,6 +16,7 @@ interface IProps {
|
|
|
16
16
|
selectCallback?: (checked: boolean, id?: string | number) => void;
|
|
17
17
|
toggleAllCallback?: (checked: boolean) => void;
|
|
18
18
|
sortCallback?: (ascending: boolean, columnId: string) => void;
|
|
19
|
+
closeText?: string;
|
|
19
20
|
}
|
|
20
21
|
declare const TypeTable: React.FC<IProps>;
|
|
21
22
|
export default TypeTable;
|
package/dist/index.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import darkTheme from './themes/dark';
|
|
|
3
3
|
import themeFallbackHelper from './themes/themeFallbackHelper';
|
|
4
4
|
import { AlertBar, Notification, INotificationProps, AlertWrapper } from './Alerts';
|
|
5
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 } from './Form';
|
|
6
|
-
import { DatePicker, DateInterval, isDateInterval, IFilterDatePicker, FilterDropdownContainer, FilterButton, FilterDropdown, SortDropdown, FilterInputs, ISearchFilter, IFilterDropdownExt, FiltersResults, IFilterLabel, FilterBar, IFilterDropdownConfig, IFilterType, IFilterItem, IFilterValue, IFilterResult, isFilterItem } from './Filters';
|
|
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';
|
|
7
7
|
import Icon, { IconSVGs } from './Icons/Icon';
|
|
8
8
|
import StatusIcon from './Icons/StatusIcon';
|
|
9
9
|
import { LineUI, LineUIVideo, LineUIRTC, LineSetContext, LineReducer } from './LineUI';
|
|
@@ -20,7 +20,7 @@ import Spinner from './Indicators/Spinner';
|
|
|
20
20
|
import WebRTCClient from './WebRTCClient';
|
|
21
21
|
import { MainMenu, TopBar, Content, Layout, MainContainer, SidebarBox, SidebarLink, SidebarHeading, Logo, SidebarLinkHeading, BackLink, Sidebar, GlobalUI, INotificationItem, INotificationsHistory, ICustomDrawer } from './Global';
|
|
22
22
|
import { Tabs, TabContext, Tab, TabList, TabContent, TabWithIcon, TabsWithIconBar, ITabIcon } from './Tabs';
|
|
23
|
-
export { darkTheme, lightTheme, themeFallbackHelper, 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, ConfirmationModal, DatePicker, FilterDropdownContainer, FilterButton, FilterDropdown, SortDropdown, 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, resetButtonStyles, Spinner, WebRTCClient, MainMenu, TopBar, MainContainer, Layout, Content, SidebarBox, SidebarLink, SidebarHeading, Logo, SidebarLinkHeading, BackLink, Sidebar, GlobalUI, Tabs, TabContext, Tab, TabList, TabContent, TabWithIcon, TabsWithIconBar, CameraPanels, CameraPanelWrapper, Tag, TagList, TagListWrapper, MediaBox, BasicSearchInput, DebouncedSearcher, ActionsBar, NotificationProvider, useNotification, ModalContext, ModalProvider, useModal };
|
|
23
|
+
export { darkTheme, lightTheme, themeFallbackHelper, 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, 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, resetButtonStyles, Spinner, WebRTCClient, MainMenu, TopBar, MainContainer, Layout, Content, SidebarBox, SidebarLink, SidebarHeading, Logo, SidebarLinkHeading, BackLink, Sidebar, GlobalUI, Tabs, TabContext, Tab, TabList, TabContent, TabWithIcon, TabsWithIconBar, CameraPanels, CameraPanelWrapper, Tag, TagList, TagListWrapper, MediaBox, BasicSearchInput, DebouncedSearcher, ActionsBar, NotificationProvider, useNotification, ModalContext, ModalProvider, useModal };
|
|
24
24
|
/**
|
|
25
25
|
* Values based on colors.feedback from theme
|
|
26
26
|
*/
|