@conboai/app.db.query 0.8.99 → 0.9.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.
- package/dist/app.db.query.js +17707 -17490
- package/dist/apps/FeedStreams/components/Content/Content.d.ts +6 -0
- package/dist/apps/FeedStreams/components/Content/index.d.ts +1 -0
- package/dist/apps/FeedStreams/components/Header/Header.d.ts +3 -1
- package/dist/apps/FeedStreams/components/ImageGrid/styles.d.ts +1 -1
- package/dist/apps/FeedStreams/components/Sidebar/Sidebar.d.ts +6 -0
- package/dist/apps/FeedStreams/components/Sidebar/index.d.ts +1 -0
- package/dist/apps/FeedStreams/hooks/useFetchData.d.ts +4 -0
- package/package.json +1 -1
- package/dist/apps/FeedStreams/hooks/useDataEffect.d.ts +0 -2
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as Content } from './Content';
|
|
@@ -2,6 +2,8 @@ type HeaderProps = {
|
|
|
2
2
|
imageSrc?: string;
|
|
3
3
|
deploymentName?: string;
|
|
4
4
|
onHomeClick?: () => void;
|
|
5
|
+
onToggleLeftPanel?: (value: boolean) => void;
|
|
6
|
+
leftPanelStatusValue: boolean;
|
|
5
7
|
};
|
|
6
|
-
declare const Header: ({ imageSrc, deploymentName, onHomeClick }: HeaderProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
declare const Header: ({ imageSrc, deploymentName, onHomeClick, onToggleLeftPanel, leftPanelStatusValue }: HeaderProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
9
|
export default Header;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { SxProps } from '@mui/material';
|
|
2
2
|
|
|
3
|
-
export declare const imageGridSx: SxProps;
|
|
3
|
+
export declare const imageGridSx: (isAutoHeight: boolean) => SxProps;
|
|
4
4
|
export declare const imageItemSx: SxProps;
|
|
5
5
|
export declare const imageBoxSx: SxProps;
|
|
6
6
|
export declare const delayBoxSx: (delay: number) => SxProps;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as Sidebar } from './Sidebar';
|
package/package.json
CHANGED