@conboai/app.db.query 0.9.13 → 0.9.14

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.
@@ -0,0 +1,7 @@
1
+ type InfoPanelProps = {
2
+ title: string;
3
+ callDate: Date | null;
4
+ length: number;
5
+ };
6
+ declare const InfoPanel: ({ title, callDate, length }: InfoPanelProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default InfoPanel;
@@ -1,3 +1,5 @@
1
+ import { DropdownOption } from '../../../../shared/ButtonWithDropdown/ButtonWithDropdown';
2
+
1
3
  type ImageGridProps = {
2
4
  data: any[];
3
5
  onModalOpen: (value: string) => void;
@@ -14,6 +16,9 @@ type ImageGridProps = {
14
16
  loadMoreLoading?: boolean;
15
17
  timezone?: string;
16
18
  onSelect?: (selectedId: string) => void;
19
+ onSelectOption?: (selected: DropdownOption) => void;
20
+ options?: DropdownOption[];
21
+ selectedOption?: DropdownOption | null;
17
22
  };
18
- declare const _default: import('react').MemoExoticComponent<({ data, onModalOpen, onClick, onLoadMore, showLoadMore, selectedItem, loading, loadMoreLoading, timezone, onSelect }: ImageGridProps) => import("react/jsx-runtime").JSX.Element>;
23
+ declare const _default: import('react').MemoExoticComponent<({ data, onModalOpen, onClick, onLoadMore, showLoadMore, selectedItem, loading, loadMoreLoading, timezone, onSelect, onSelectOption, options, selectedOption }: ImageGridProps) => import("react/jsx-runtime").JSX.Element>;
19
24
  export default _default;
@@ -9,10 +9,10 @@ export declare const fullscreenIconBoxSx: SxProps;
9
9
  export declare const typographyBoldSx: SxProps;
10
10
  export declare const typographyRegularSx: SxProps;
11
11
  export declare const mainContentSx: SxProps;
12
- export declare const actionBtnSx: SxProps;
13
12
  export declare const imageBoxSx: (isActive?: boolean) => SxProps;
14
13
  export declare const loaderBoxSx: SxProps;
15
14
  export declare const loadMoreBoxSx: SxProps;
16
15
  export declare const errorBoxSx: (isActive?: boolean) => SxProps;
17
16
  export declare const imageCheckboxSx: (isSelected?: boolean) => SxProps;
18
17
  export declare const checkboxSx: SxProps;
18
+ export declare const loadMoreButtonSx: SxProps;
@@ -1,4 +1,4 @@
1
1
  export declare const downloadImageOptions: {
2
- label: number;
2
+ label: string;
3
3
  value: number;
4
4
  }[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@conboai/app.db.query",
3
- "version": "0.9.13",
3
+ "version": "0.9.14",
4
4
  "type": "module",
5
5
  "main": "dist/app.db.query.js",
6
6
  "types": "dist/build/index.d.ts",