quickblox-react-ui-kit 0.2.7-release-final → 0.2.8-beta.11

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 (27) hide show
  1. package/dist/CommonTypes/BaseViewModel.d.ts +2 -0
  2. package/dist/Data/source/remote/Mapper/MessageDTOMapper.d.ts +8 -1
  3. package/dist/Presentation/Views/Dialog/DialogHeader/DialogHeader.d.ts +2 -1
  4. package/dist/Presentation/Views/Dialog/DialogHeader/RenderLeftActions/RenderLeftActions.d.ts +10 -0
  5. package/dist/Presentation/Views/Dialog/DialogHeader/RenderRightActions/RenderRightActions.d.ts +10 -0
  6. package/dist/Presentation/Views/Dialog/Message/IncomingMessage/MessageContentComponent/MessageContentComponent.d.ts +1 -0
  7. package/dist/Presentation/Views/DialogInfo/DialogInfo.d.ts +6 -1
  8. package/dist/Presentation/Views/{MembersList → DialogInfo/MembersList}/MembersList.d.ts +3 -2
  9. package/dist/Presentation/Views/DialogInfo/UsersList/UsersList.d.ts +1 -0
  10. package/dist/Presentation/Views/DialogInfo/UsersList/useUsersListViewModel.d.ts +1 -1
  11. package/dist/Presentation/Views/DialogList/DialogList.d.ts +3 -1
  12. package/dist/Presentation/Views/DialogListHeader/DialogListHeader.d.ts +2 -2
  13. package/dist/Presentation/Views/{CreateDialog → Flow/CreateDialog}/CreateDialog.d.ts +1 -1
  14. package/dist/Presentation/Views/{CreateDialogFlow → Flow/CreateDialogFlow}/CreateNewDialogFlow.d.ts +1 -1
  15. package/dist/Presentation/Views/Flow/LeaveDialogFlow/LeaveDialogFlow.d.ts +9 -0
  16. package/dist/Presentation/Views/PreviewDialog/PreviewDialog.d.ts +2 -0
  17. package/dist/Presentation/Views/PreviewDialog/PreviewDialogContextMenu/PreviewDialogContextMenu.d.ts +13 -0
  18. package/dist/Presentation/components/containers/ScrollableContainer/ScrollableContainer.d.ts +2 -0
  19. package/dist/Presentation/components/containers/SectionList/hooks/useMobileLayout.d.ts +1 -1
  20. package/dist/Presentation/layouts/Desktop/DesktopLayout.d.ts +3 -1
  21. package/dist/Presentation/layouts/Desktop/QuickBloxUIKitDesktopLayout.d.ts +1 -0
  22. package/dist/index-ui.d.ts +2 -3
  23. package/dist/index-ui.js +27461 -553
  24. package/dist/index-ui.js.map +1 -0
  25. package/package.json +2 -2
  26. package/dist/Presentation/Views/Dialog/RenderDialogHeaderNavigator/RenderDialogHeaderNavigator.d.ts +0 -9
  27. package/dist/Presentation/layouts/TestStage/TestStageMarkup.d.ts +0 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "quickblox-react-ui-kit",
3
- "version": "0.2.7-release-final",
3
+ "version": "0.2.8-beta.11",
4
4
  "main": "dist/index-ui.js",
5
5
  "license": "MIT",
6
6
  "keywords": [
@@ -89,7 +89,7 @@
89
89
  "test": "react-scripts test",
90
90
  "lint": "eslint ./src",
91
91
  "eject": "react-scripts eject",
92
- "prepublishOnly": "npm run build"
92
+ "prepublishOnly": "npm run build:lib"
93
93
  },
94
94
  "lint-staged": {
95
95
  "src/**/*.{ts,tsx}": "eslint"
@@ -1,9 +0,0 @@
1
- import React from 'react';
2
- import { FunctionTypeVoidToVoid } from '../../../../CommonTypes/BaseViewModel';
3
- import UiKitTheme from '../../../themes/UiKitTheme';
4
- type RenderDialogHeaderNavigatorProps = {
5
- onClickInfo: FunctionTypeVoidToVoid;
6
- theme?: UiKitTheme;
7
- };
8
- declare const RenderDialogHeaderNavigator: React.FC<RenderDialogHeaderNavigatorProps>;
9
- export default RenderDialogHeaderNavigator;
@@ -1,4 +0,0 @@
1
- /// <reference types="react" />
2
- import './TestStageMarkup.scss';
3
- declare function TestStageMarkup(): JSX.Element;
4
- export default TestStageMarkup;