@true-engineering/true-react-common-ui-kit 3.0.0-alpha.9 → 3.0.1

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 (120) hide show
  1. package/README.md +26 -0
  2. package/dist/components/Button/Button.d.ts +2 -1
  3. package/dist/components/Button/Button.styles.d.ts +1 -1
  4. package/dist/components/Checkbox/Checkbox.styles.d.ts +1 -1
  5. package/dist/components/DatePicker/components/DatePickerHeader/DatePickerHeader.styles.d.ts +1 -1
  6. package/dist/components/Description/Description.styles.d.ts +1 -1
  7. package/dist/components/FiltersPane/FiltersPane.styles.d.ts +1 -1
  8. package/dist/components/FiltersPane/components/Filter/Filter.d.ts +1 -1
  9. package/dist/components/FiltersPane/components/FilterInterval/FilterInterval.styles.d.ts +2 -2
  10. package/dist/components/FiltersPane/components/FilterSelect/FilterSelect.styles.d.ts +3 -3
  11. package/dist/components/FiltersPane/components/FilterValueView/FilterValueView.d.ts +1 -1
  12. package/dist/components/FiltersPane/components/FilterWithDates/FilterWithDates.styles.d.ts +4 -4
  13. package/dist/components/FiltersPane/components/FilterWrapper/FilterWrapper.styles.d.ts +1 -1
  14. package/dist/components/FiltersPane/constants.d.ts +1 -1
  15. package/dist/components/FiltersPane/types.d.ts +1 -1
  16. package/dist/components/FlexibleTable/FlexibleTable.d.ts +3 -2
  17. package/dist/components/FlexibleTable/FlexibleTable.styles.d.ts +2 -2
  18. package/dist/components/FlexibleTable/components/FlexibleTableCell/FlexibleTableCell.d.ts +2 -3
  19. package/dist/components/FlexibleTable/components/FlexibleTableRow/FlexibleTableRow.d.ts +1 -1
  20. package/dist/components/FlexibleTable/components/FlexibleTableRow/FlexibleTableRow.styles.d.ts +1 -1
  21. package/dist/components/FlexibleTable/helpers.d.ts +3 -0
  22. package/dist/components/FlexibleTable/types.d.ts +1 -1
  23. package/dist/components/Icon/helpers.d.ts +1 -1
  24. package/dist/components/Icon/icons-list.d.ts +1 -1
  25. package/dist/components/Icon/index.d.ts +1 -0
  26. package/dist/{helpers/snippets.d.ts → components/Icon/snippet.d.ts} +1 -1
  27. package/dist/components/Icon/types.d.ts +2 -1
  28. package/dist/components/Input/Input.d.ts +2 -1
  29. package/dist/components/Input/Input.styles.d.ts +1 -1
  30. package/dist/components/List/List.d.ts +3 -3
  31. package/dist/components/List/components/ListItem/ListItem.d.ts +15 -0
  32. package/dist/components/List/components/ListItem/ListItem.styles.d.ts +3 -0
  33. package/dist/components/List/components/ListItem/index.d.ts +2 -0
  34. package/dist/components/List/components/index.d.ts +1 -0
  35. package/dist/components/List/index.d.ts +1 -1
  36. package/dist/components/Modal/Modal.styles.d.ts +1 -1
  37. package/dist/components/MoreMenu/MoreMenu.styles.d.ts +1 -1
  38. package/dist/components/MultiSelect/MultiSelect.styles.d.ts +1 -1
  39. package/dist/components/MultiSelect/components/MultiSelectInput/MultiSelectInput.d.ts +2 -1
  40. package/dist/components/MultiSelect/components/MultiSelectInput/MultiSelectInput.styles.d.ts +1 -1
  41. package/dist/components/MultiSelectList/MultiSelectList.styles.d.ts +1 -1
  42. package/dist/components/Notification/Notification.styles.d.ts +1 -1
  43. package/dist/components/NumberInput/helpers.d.ts +1 -1
  44. package/dist/components/PhoneInput/PhoneInput.styles.d.ts +1 -1
  45. package/dist/components/PhoneInput/index.d.ts +0 -1
  46. package/dist/components/ScrollIntoViewIfNeeded/ScrollIntoViewIfNeeded.d.ts +5 -5
  47. package/dist/components/Select/Select.d.ts +2 -1
  48. package/dist/components/Select/Select.styles.d.ts +7 -7
  49. package/dist/components/Select/components/SelectList/SelectList.styles.d.ts +1 -1
  50. package/dist/components/Skeleton/Skeleton.d.ts +7 -0
  51. package/dist/components/Skeleton/Skeleton.styles.d.ts +3 -0
  52. package/dist/components/Skeleton/index.d.ts +2 -0
  53. package/dist/components/Switch/Switch.styles.d.ts +1 -1
  54. package/dist/components/TextArea/TextArea.styles.d.ts +1 -1
  55. package/dist/components/ThemedPreloader/ThemedPreloader.styles.d.ts +1 -1
  56. package/dist/components/Toaster/Toaster.styles.d.ts +1 -1
  57. package/dist/components/Tooltip/Tooltip.styles.d.ts +1 -1
  58. package/dist/components/index.d.ts +1 -0
  59. package/dist/constants/index.d.ts +1 -0
  60. package/dist/constants/phone-info.d.ts +2 -0
  61. package/dist/helpers/phone.d.ts +1 -1
  62. package/dist/hooks/index.d.ts +1 -0
  63. package/dist/hooks/use-merged-refs.d.ts +2 -0
  64. package/dist/index.d.ts +1 -1
  65. package/dist/theme/types.d.ts +3 -1
  66. package/dist/true-react-common-ui-kit.js +24272 -24084
  67. package/dist/true-react-common-ui-kit.js.map +1 -1
  68. package/dist/true-react-common-ui-kit.umd.cjs +24271 -24083
  69. package/dist/true-react-common-ui-kit.umd.cjs.map +1 -1
  70. package/dist/types.d.ts +0 -3
  71. package/package.json +2 -1
  72. package/src/components/Button/Button.tsx +2 -2
  73. package/src/components/FiltersPane/components/Filter/Filter.tsx +1 -1
  74. package/src/components/FiltersPane/components/FilterValueView/FilterValueView.tsx +1 -1
  75. package/src/components/FiltersPane/components/FilterWrapper/FilterWrapper.styles.ts +1 -1
  76. package/src/components/FiltersPane/constants.ts +1 -1
  77. package/src/components/FiltersPane/types.ts +1 -1
  78. package/src/components/FlexibleTable/FlexibleTable.stories.tsx +1 -0
  79. package/src/components/FlexibleTable/FlexibleTable.styles.ts +6 -1
  80. package/src/components/FlexibleTable/FlexibleTable.tsx +118 -55
  81. package/src/components/FlexibleTable/components/FlexibleTableCell/FlexibleTableCell.tsx +26 -30
  82. package/src/components/FlexibleTable/components/FlexibleTableRow/FlexibleTableRow.styles.ts +4 -0
  83. package/src/components/FlexibleTable/components/FlexibleTableRow/FlexibleTableRow.tsx +16 -12
  84. package/src/components/FlexibleTable/helpers.ts +15 -0
  85. package/src/components/FlexibleTable/types.ts +1 -1
  86. package/src/components/Icon/{helpers.ts → helpers.tsx} +1 -1
  87. package/src/components/Icon/icons-list.ts +30 -0
  88. package/src/components/Icon/index.ts +1 -0
  89. package/src/{helpers/snippets.tsx → components/Icon/snippet.tsx} +2 -2
  90. package/src/components/Icon/types.ts +3 -1
  91. package/src/components/Input/Input.tsx +2 -3
  92. package/src/components/List/List.stories.tsx +11 -4
  93. package/src/components/List/List.tsx +9 -32
  94. package/src/components/List/components/ListItem/ListItem.styles.ts +47 -0
  95. package/src/components/List/components/ListItem/ListItem.tsx +57 -0
  96. package/src/components/List/components/ListItem/index.ts +2 -0
  97. package/src/components/List/components/index.ts +1 -0
  98. package/src/components/List/index.ts +1 -1
  99. package/src/components/MultiSelect/components/MultiSelectInput/MultiSelectInput.tsx +3 -2
  100. package/src/components/NumberInput/helpers.ts +1 -1
  101. package/src/components/PhoneInput/PhoneInput.stories.tsx +1 -1
  102. package/src/components/PhoneInput/components/PhoneInputCountryList/PhoneInputCountryList.tsx +1 -1
  103. package/src/components/PhoneInput/index.ts +0 -1
  104. package/src/components/Select/Select.tsx +2 -2
  105. package/src/components/Skeleton/Skeleton.stories.tsx +19 -0
  106. package/src/components/Skeleton/Skeleton.styles.ts +46 -0
  107. package/src/components/Skeleton/Skeleton.tsx +12 -0
  108. package/src/components/Skeleton/index.ts +2 -0
  109. package/src/components/index.ts +1 -0
  110. package/src/constants/index.ts +1 -0
  111. package/src/{components/PhoneInput → constants}/phone-info.ts +1 -1
  112. package/src/helpers/phone.ts +2 -1
  113. package/src/hooks/index.ts +1 -0
  114. package/src/hooks/use-merged-refs.ts +4 -0
  115. package/src/index.ts +1 -1
  116. package/src/theme/types.ts +4 -0
  117. package/src/types.ts +0 -4
  118. package/dist/components/List/types.d.ts +0 -12
  119. package/dist/components/PhoneInput/phone-info.d.ts +0 -2
  120. package/src/components/List/types.ts +0 -13
@@ -2,21 +2,21 @@ import { ITweakStyles } from '../../theme';
2
2
  import { IInputStyles } from '../Input';
3
3
  import { ISearchInputStyles } from '../SearchInput';
4
4
  import { ISelectListStyles } from './components';
5
- export declare const useStyles: import("../../theme").IUseStyles<"arrow" | "root" | "icon" | "disabled" | "inputWrapper" | "listWrapper" | "withoutPopper" | "listWrapperInBody" | "activeArrow" | "counter", unknown>;
6
- export declare const readonlyInputStyles: Partial<import("jss").Styles<"top" | "bottom" | "right" | "left" | "root" | "middle" | "icon" | "disabled" | "input" | "label" | "error" | "invalid" | "loading" | "inputWrapper" | "autosize" | "focused" | "inputContent" | "unitsWrapper" | "fakeValue" | "units" | "withFloatingLabel" | "floatingLabelWithoutPadding" | "floating" | "activeLabel" | "required" | "floatingWithoutPadding" | "requiredLabel" | "activeIcon" | "border-top" | "border-bottom" | "border-left" | "border-right" | "top-left" | "top-right" | "bottom-left" | "bottom-right" | "controls" | "clearIcon" | "inputIcon" | "withIcons" | "withControls" | "invalidLabel" | "info" | "error-top" | "error-bottom" | "withUnits", unknown, undefined>> & Partial<{
7
- tweakPreloader: Partial<import("jss").Styles<"currentColor" | "root" | "default" | "dots" | "logo", unknown, undefined>> & Partial<{
5
+ export declare const useStyles: import("../../theme").IUseStyles<"root" | "icon" | "disabled" | "inputWrapper" | "arrow" | "listWrapper" | "withoutPopper" | "listWrapperInBody" | "activeArrow" | "counter", unknown>;
6
+ export declare const readonlyInputStyles: Partial<import("jss").Styles<"top" | "bottom" | "right" | "left" | "error" | "input" | "invalid" | "root" | "middle" | "icon" | "disabled" | "loading" | "inputWrapper" | "autosize" | "label" | "focused" | "inputContent" | "unitsWrapper" | "fakeValue" | "units" | "withFloatingLabel" | "floatingLabelWithoutPadding" | "floating" | "activeLabel" | "required" | "floatingWithoutPadding" | "requiredLabel" | "activeIcon" | "border-top" | "border-bottom" | "border-left" | "border-right" | "top-left" | "top-right" | "bottom-left" | "bottom-right" | "controls" | "clearIcon" | "inputIcon" | "withIcons" | "withControls" | "invalidLabel" | "info" | "error-top" | "error-bottom" | "withUnits", unknown, undefined>> & Partial<{
7
+ tweakPreloader: Partial<import("jss").Styles<"root" | "default" | "currentColor" | "dots" | "logo", unknown, undefined>> & Partial<{
8
8
  tweakDotsPreloader: Partial<import("jss").Styles<"root" | "dot" | "fadedDot" | "@keyframes FadedDots", unknown, undefined>> & Partial<unknown>;
9
9
  tweakSvgPreloader: Partial<import("jss").Styles<"root", unknown, undefined>> & Partial<unknown>;
10
10
  }>;
11
11
  }>;
12
- export declare const multiSelectInputStyles: Partial<import("jss").Styles<"top" | "bottom" | "right" | "left" | "root" | "middle" | "icon" | "disabled" | "input" | "label" | "error" | "invalid" | "loading" | "inputWrapper" | "autosize" | "focused" | "inputContent" | "unitsWrapper" | "fakeValue" | "units" | "withFloatingLabel" | "floatingLabelWithoutPadding" | "floating" | "activeLabel" | "required" | "floatingWithoutPadding" | "requiredLabel" | "activeIcon" | "border-top" | "border-bottom" | "border-left" | "border-right" | "top-left" | "top-right" | "bottom-left" | "bottom-right" | "controls" | "clearIcon" | "inputIcon" | "withIcons" | "withControls" | "invalidLabel" | "info" | "error-top" | "error-bottom" | "withUnits", unknown, undefined>> & Partial<{
13
- tweakPreloader: Partial<import("jss").Styles<"currentColor" | "root" | "default" | "dots" | "logo", unknown, undefined>> & Partial<{
12
+ export declare const multiSelectInputStyles: Partial<import("jss").Styles<"top" | "bottom" | "right" | "left" | "error" | "input" | "invalid" | "root" | "middle" | "icon" | "disabled" | "loading" | "inputWrapper" | "autosize" | "label" | "focused" | "inputContent" | "unitsWrapper" | "fakeValue" | "units" | "withFloatingLabel" | "floatingLabelWithoutPadding" | "floating" | "activeLabel" | "required" | "floatingWithoutPadding" | "requiredLabel" | "activeIcon" | "border-top" | "border-bottom" | "border-left" | "border-right" | "top-left" | "top-right" | "bottom-left" | "bottom-right" | "controls" | "clearIcon" | "inputIcon" | "withIcons" | "withControls" | "invalidLabel" | "info" | "error-top" | "error-bottom" | "withUnits", unknown, undefined>> & Partial<{
13
+ tweakPreloader: Partial<import("jss").Styles<"root" | "default" | "currentColor" | "dots" | "logo", unknown, undefined>> & Partial<{
14
14
  tweakDotsPreloader: Partial<import("jss").Styles<"root" | "dot" | "fadedDot" | "@keyframes FadedDots", unknown, undefined>> & Partial<unknown>;
15
15
  tweakSvgPreloader: Partial<import("jss").Styles<"root", unknown, undefined>> & Partial<unknown>;
16
16
  }>;
17
17
  }>;
18
- export declare const readonlyMultiSelectStyles: Partial<import("jss").Styles<"top" | "bottom" | "right" | "left" | "root" | "middle" | "icon" | "disabled" | "input" | "label" | "error" | "invalid" | "loading" | "inputWrapper" | "autosize" | "focused" | "inputContent" | "unitsWrapper" | "fakeValue" | "units" | "withFloatingLabel" | "floatingLabelWithoutPadding" | "floating" | "activeLabel" | "required" | "floatingWithoutPadding" | "requiredLabel" | "activeIcon" | "border-top" | "border-bottom" | "border-left" | "border-right" | "top-left" | "top-right" | "bottom-left" | "bottom-right" | "controls" | "clearIcon" | "inputIcon" | "withIcons" | "withControls" | "invalidLabel" | "info" | "error-top" | "error-bottom" | "withUnits", unknown, undefined>> & Partial<{
19
- tweakPreloader: Partial<import("jss").Styles<"currentColor" | "root" | "default" | "dots" | "logo", unknown, undefined>> & Partial<{
18
+ export declare const readonlyMultiSelectStyles: Partial<import("jss").Styles<"top" | "bottom" | "right" | "left" | "error" | "input" | "invalid" | "root" | "middle" | "icon" | "disabled" | "loading" | "inputWrapper" | "autosize" | "label" | "focused" | "inputContent" | "unitsWrapper" | "fakeValue" | "units" | "withFloatingLabel" | "floatingLabelWithoutPadding" | "floating" | "activeLabel" | "required" | "floatingWithoutPadding" | "requiredLabel" | "activeIcon" | "border-top" | "border-bottom" | "border-left" | "border-right" | "top-left" | "top-right" | "bottom-left" | "bottom-right" | "controls" | "clearIcon" | "inputIcon" | "withIcons" | "withControls" | "invalidLabel" | "info" | "error-top" | "error-bottom" | "withUnits", unknown, undefined>> & Partial<{
19
+ tweakPreloader: Partial<import("jss").Styles<"root" | "default" | "currentColor" | "dots" | "logo", unknown, undefined>> & Partial<{
20
20
  tweakDotsPreloader: Partial<import("jss").Styles<"root" | "dot" | "fadedDot" | "@keyframes FadedDots", unknown, undefined>> & Partial<unknown>;
21
21
  tweakSvgPreloader: Partial<import("jss").Styles<"root", unknown, undefined>> & Partial<unknown>;
22
22
  }>;
@@ -2,5 +2,5 @@ import { ITweakStyles } from '../../../../theme';
2
2
  export declare const ROW_HEIGHT = 40;
3
3
  export declare const CONTAINER_PADDING = 10;
4
4
  export declare const CELL_PADDING: number[];
5
- export declare const useStyles: import("../../../../theme").IUseStyles<"list" | "root" | "cell" | "active" | "disabled" | "loading" | "focused" | "withListHeader" | "listHeader" | "cellWithCheckbox" | "noMatchesLabel" | "defaultCell", unknown>;
5
+ export declare const useStyles: import("../../../../theme").IUseStyles<"root" | "cell" | "active" | "disabled" | "loading" | "list" | "focused" | "withListHeader" | "listHeader" | "cellWithCheckbox" | "noMatchesLabel" | "defaultCell", unknown>;
6
6
  export declare type ISelectListStyles = ITweakStyles<typeof useStyles>;
@@ -0,0 +1,7 @@
1
+ import { CSSProperties, FC } from 'react';
2
+ import { ICommonProps } from '../../types';
3
+ import { ISkeletonStyles } from './Skeleton.styles';
4
+ export interface ISkeletonProps extends Pick<ICommonProps<ISkeletonStyles>, 'tweakStyles'> {
5
+ height?: CSSProperties['height'];
6
+ }
7
+ export declare const Skeleton: FC<ISkeletonProps>;
@@ -0,0 +1,3 @@
1
+ import { ITweakStyles } from '../../theme';
2
+ export declare const useStyles: import("../../theme").IUseStyles<"root" | "@keyframes skeleton", unknown>;
3
+ export declare type ISkeletonStyles = ITweakStyles<typeof useStyles>;
@@ -0,0 +1,2 @@
1
+ export * from './Skeleton';
2
+ export type { ISkeletonStyles } from './Skeleton.styles';
@@ -1,3 +1,3 @@
1
1
  import { ITweakStyles } from '../../theme';
2
- export declare const useStyles: import("../../theme").IUseStyles<"root" | "disabled" | "input" | "label" | "switch" | "invalid" | "primary" | "secondary" | "checked" | "labelLeft" | "labelRight", unknown>;
2
+ export declare const useStyles: import("../../theme").IUseStyles<"input" | "invalid" | "root" | "disabled" | "primary" | "secondary" | "checked" | "label" | "switch" | "labelLeft" | "labelRight", unknown>;
3
3
  export declare type ISwitchStyles = ITweakStyles<typeof useStyles>;
@@ -1,3 +1,3 @@
1
1
  import { ITweakStyles } from '../../theme';
2
- export declare const useStyles: import("../../theme").IUseStyles<"root" | "textarea" | "disabled" | "footer" | "label" | "error" | "invalid" | "focused" | "withFloatingLabel" | "floating" | "activeLabel" | "required" | "requiredLabel" | "invalidLabel" | "info" | "wrapper" | "symbolsCount" | "symbolsCountError", unknown>;
2
+ export declare const useStyles: import("../../theme").IUseStyles<"error" | "invalid" | "root" | "textarea" | "disabled" | "label" | "footer" | "focused" | "withFloatingLabel" | "floating" | "activeLabel" | "required" | "requiredLabel" | "invalidLabel" | "info" | "wrapper" | "symbolsCount" | "symbolsCountError", unknown>;
3
3
  export declare type ITextAreaStyles = ITweakStyles<typeof useStyles>;
@@ -1,6 +1,6 @@
1
1
  import { ITweakStyles } from '../../theme';
2
2
  import { IDotsPreloaderStyles, ISvgPreloaderStyles } from './components';
3
- export declare const useStyles: import("../../theme").IUseStyles<"currentColor" | "root" | "default" | "dots" | "logo", unknown>;
3
+ export declare const useStyles: import("../../theme").IUseStyles<"root" | "default" | "currentColor" | "dots" | "logo", unknown>;
4
4
  export declare type IThemedPreloaderStyles = ITweakStyles<typeof useStyles, {
5
5
  tweakDotsPreloader: IDotsPreloaderStyles;
6
6
  tweakSvgPreloader: ISvgPreloaderStyles;
@@ -1,6 +1,6 @@
1
1
  import { ITweakStyles } from '../../theme';
2
2
  import { ICloseButtonStyles } from '../CloseButton';
3
- export declare const useStyles: import("../../theme").IUseStyles<"close" | "content" | "root" | "text" | "title" | "error" | "warning" | "iconContainer" | "info" | "ok" | "not-ok", unknown>;
3
+ export declare const useStyles: import("../../theme").IUseStyles<"content" | "close" | "error" | "root" | "text" | "warning" | "iconContainer" | "info" | "title" | "ok" | "not-ok", unknown>;
4
4
  export declare type IToasterStyles = ITweakStyles<typeof useStyles, {
5
5
  tweakCloseButton: ICloseButtonStyles;
6
6
  }>;
@@ -1,3 +1,3 @@
1
1
  import { ITweakStyles } from '../../theme';
2
- export declare const useStyles: import("../../theme").IUseStyles<"root" | "tooltip" | "error" | "info" | "hint", unknown>;
2
+ export declare const useStyles: import("../../theme").IUseStyles<"error" | "root" | "tooltip" | "info" | "hint", unknown>;
3
3
  export declare type ITooltipStyles = ITweakStyles<typeof useStyles>;
@@ -34,3 +34,4 @@ export * from './ThemedPreloader';
34
34
  export * from './Toaster';
35
35
  export * from './Tooltip';
36
36
  export * from './ScrollIntoViewIfNeeded';
37
+ export * from './Skeleton';
@@ -0,0 +1 @@
1
+ export * from './phone-info';
@@ -0,0 +1,2 @@
1
+ import type { IPhoneInfo } from '../components';
2
+ export declare const phoneInfo: IPhoneInfo[];
@@ -1,4 +1,4 @@
1
- import { IPhoneInfo, IPhoneValue } from '../components';
1
+ import type { IPhoneInfo, IPhoneValue } from '../components';
2
2
  export declare const findCountryByCode: (countryCode?: string, countriesList?: IPhoneInfo[]) => IPhoneInfo | undefined;
3
3
  export declare const findCountryIndexByCode: (countryCode?: string, countriesList?: IPhoneInfo[]) => number;
4
4
  export declare const getCountryTextByLocale: (country: IPhoneInfo, locale: string) => string;
@@ -4,3 +4,4 @@ export * from './use-dropdown';
4
4
  export * from './use-tweak-styles';
5
5
  export * from './use-did-mount-effect';
6
6
  export * from './use-mixed-styles';
7
+ export * from './use-merged-refs';
@@ -0,0 +1,2 @@
1
+ import { mergeRefs } from '@true-engineering/true-react-platform-helpers';
2
+ export declare const useMergedRefs: typeof mergeRefs;
package/dist/index.d.ts CHANGED
@@ -2,5 +2,5 @@ export * from './theme';
2
2
  export * from './components';
3
3
  export * from './hooks';
4
4
  export * from './types';
5
+ export * from './constants';
5
6
  export * from './helpers';
6
- export * from './helpers/snippets';
@@ -1,6 +1,6 @@
1
1
  import { Styles } from 'react-jss';
2
2
  import { Classes } from 'jss';
3
- import type { IAccountInfoStyles, IAddButtonStyles, IButtonStyles, ICheckboxStyles, ICloseButtonStyles, ICommonIcon, IComplexIcon, ICssBaselineStyles, IDateInputStyles, IDatePickerHeaderStyles, IDatePickerStyles, IDescriptionStyles, IDotsPreloaderStyles, IFilterIntervalStyles, IFilterSelectStyles, IFiltersPaneSearchStyles, IFiltersPaneStyles, IFilterWithDatesStyles, IFilterWithPeriodStyles, IFilterWrapperStyles, IFlagStyles, IFlexibleTableStyles, IIconStyles, IIncrementInputStyles, IInputStyles, IListStyles, IModalStyles, IMoreMenuStyles, IMultiSelectInputStyles, IMultiSelectListStyles, IMultiSelectStyles, INotificationStyles, IPhoneInputCountryListStyles, IPhoneInputStyles, IPreloaderSvgType, IRadioButtonStyles, ISearchInputStyles, ISelectListStyles, ISelectStyles, ISvgIcon, ISvgPreloaderStyles, ISwitchStyles, ITextAreaStyles, ITextWithInfoStyles, ITextWithTooltipStyles, IThemedPreloaderStyles, IToasterStyles, ITooltipStyles, IFlexibleTableCellStyles, IFlexibleTableRowStyles, IFilterValueViewStyles } from '../components';
3
+ import type { IAccountInfoStyles, IAddButtonStyles, IButtonStyles, ICheckboxStyles, ICloseButtonStyles, ICommonIcon, IComplexIcon, ICssBaselineStyles, IDateInputStyles, IDatePickerHeaderStyles, IDatePickerStyles, IDescriptionStyles, IDotsPreloaderStyles, IFilterIntervalStyles, IFilterSelectStyles, IFiltersPaneSearchStyles, IFiltersPaneStyles, IFilterWithDatesStyles, IFilterWithPeriodStyles, IFilterWrapperStyles, IFlagStyles, IFlexibleTableStyles, IIconStyles, IIncrementInputStyles, IInputStyles, IListStyles, IModalStyles, IMoreMenuStyles, IMultiSelectInputStyles, IMultiSelectListStyles, IMultiSelectStyles, INotificationStyles, IPhoneInputCountryListStyles, IPhoneInputStyles, IPreloaderSvgType, IRadioButtonStyles, ISearchInputStyles, ISelectListStyles, ISelectStyles, ISvgIcon, ISvgPreloaderStyles, ISwitchStyles, ITextAreaStyles, ITextWithInfoStyles, ITextWithTooltipStyles, IThemedPreloaderStyles, IToasterStyles, ITooltipStyles, IFlexibleTableCellStyles, IFlexibleTableRowStyles, IFilterValueViewStyles, ISkeletonStyles, IListItemStyles } from '../components';
4
4
  export declare type IStyles<C extends string, P> = Styles<C, P, Partial<Styles<C, P>>>;
5
5
  export declare type IUseStyles<C extends string, P = unknown> = (data?: P & {
6
6
  theme?: Partial<Styles<C, P>>;
@@ -35,6 +35,7 @@ export interface IComponentStyles {
35
35
  IncrementInput: IIncrementInputStyles;
36
36
  Input: IInputStyles;
37
37
  List: IListStyles;
38
+ ListItem: IListItemStyles;
38
39
  Modal: IModalStyles;
39
40
  MoreMenu: IMoreMenuStyles;
40
41
  MultiSelect: IMultiSelectStyles;
@@ -47,6 +48,7 @@ export interface IComponentStyles {
47
48
  SearchInput: ISearchInputStyles;
48
49
  Select: ISelectStyles;
49
50
  SelectList: ISelectListStyles;
51
+ Skeleton: ISkeletonStyles;
50
52
  Switch: ISwitchStyles;
51
53
  TextArea: ITextAreaStyles;
52
54
  TextWithInfo: ITextWithInfoStyles;