touchstudy-core 0.1.191 → 0.1.193
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/components/Chats/components/CanvasOverlay.d.ts +11 -0
- package/dist/components/Chats/components/InputChat.d.ts +1 -2
- package/dist/components/Chats/components/SketchDialog/CanvasOverlay.d.ts +11 -0
- package/dist/components/Chats/components/SketchDialog/ColorPicker.d.ts +7 -0
- package/dist/components/Chats/components/SketchDialog/index.d.ts +7 -0
- package/dist/components/Chats/components/SketchDialog.d.ts +7 -0
- package/dist/components/Chats/hooks/useChatContainer.d.ts +1 -1
- package/dist/components/List/hooks/useVirtualListView.d.ts +2 -1
- package/dist/index.js +210 -153
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +212 -156
- package/dist/index.modern.js.map +1 -1
- package/dist/layouts/partials/CircularTimer/tick.d.ts +1 -0
- package/dist/utils/hooks/index.d.ts +2 -1
- package/dist/utils/hooks/useVirtualList.d.ts +2 -0
- package/package.json +1 -1
@@ -8,4 +8,5 @@ import useLoadMore from "./useLoadMore";
|
|
8
8
|
import useLogin from "./useLogin";
|
9
9
|
import useSwitchAcademy from "./useSwitchAcademy";
|
10
10
|
import useVirtualizeList from "./useVirtualizeList";
|
11
|
-
|
11
|
+
import useVirtualList from "./useVirtualList";
|
12
|
+
export { useLogin, useAutoAcademyDomain, useList, useLanguage, useCountDownTimer, useGoogleSignOut, useSwitchAcademy, useVirtualizeList, useLoadMore, useKeyboardVisible, useVirtualList };
|
@@ -10,6 +10,8 @@ declare const useVirtualList: <OrderType, FilterType extends BaseSearchQuery<Ord
|
|
10
10
|
selectedItem: DataType | undefined;
|
11
11
|
items: DataType[];
|
12
12
|
isLoading: boolean;
|
13
|
+
totalItems: number;
|
14
|
+
resetData: () => void;
|
13
15
|
handleChangeFilter: (newFilter: FilterType) => void;
|
14
16
|
setItems: import("react").Dispatch<import("react").SetStateAction<DataType[]>>;
|
15
17
|
handleChangeSelectedItem: (data?: DataType | undefined) => void;
|