@conboai/app.db.query 0.1.6

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,5 @@
1
+
2
+ declare function Classifiers({ siteId }: {
3
+ siteId: number;
4
+ }): import("react/jsx-runtime").JSX.Element;
5
+ export default Classifiers;
@@ -0,0 +1,2 @@
1
+ declare function AppContent(): import("react/jsx-runtime").JSX.Element;
2
+ export default AppContent;
@@ -0,0 +1,10 @@
1
+
2
+ export declare const columnDefs: (timezone: string) => ({
3
+ key: string;
4
+ label: string;
5
+ renderCell?: undefined;
6
+ } | {
7
+ key: string;
8
+ label: string;
9
+ renderCell: (value: string) => string;
10
+ })[];
@@ -0,0 +1,6 @@
1
+ interface IAppLeftBar {
2
+ setPanelShown: (value: boolean) => void;
3
+ isPanelShown: boolean;
4
+ }
5
+ declare function AppLeftBar({ setPanelShown, isPanelShown }: IAppLeftBar): import("react/jsx-runtime").JSX.Element;
6
+ export default AppLeftBar;
@@ -0,0 +1 @@
1
+ export { default as AppLeftBar } from './AppLeftBar';
@@ -0,0 +1,5 @@
1
+ import { SxProps } from '@mui/material';
2
+
3
+ export declare const buttonContainerSx: SxProps;
4
+ export declare const buttonBurgerIconSx: SxProps;
5
+ export declare const durationGridSx: SxProps;
@@ -0,0 +1,2 @@
1
+ declare function AppRightBar(): import("react/jsx-runtime").JSX.Element;
2
+ export default AppRightBar;
@@ -0,0 +1,18 @@
1
+
2
+ export declare const verticalTableColumnDefs: (timezone: string) => ({
3
+ headerName: string;
4
+ field: string;
5
+ renderCell?: undefined;
6
+ } | {
7
+ headerName: string;
8
+ field: string;
9
+ renderCell: (value: string) => string;
10
+ } | {
11
+ headerName: string;
12
+ field: string;
13
+ renderCell: (value: number) => string;
14
+ } | {
15
+ headerName: string;
16
+ field: string;
17
+ renderCell: (value: string[]) => string;
18
+ })[];
@@ -0,0 +1,17 @@
1
+ export declare const VIDEO_TABS: {
2
+ label: string;
3
+ value: string;
4
+ disabled: boolean;
5
+ }[];
6
+ export declare const emptyDataView: {
7
+ cargo: string;
8
+ conbo_key: string;
9
+ end: string;
10
+ event_id: string;
11
+ feed: string;
12
+ move: string;
13
+ start: string;
14
+ straddle_id: string;
15
+ zones: string;
16
+ id: string;
17
+ };
@@ -0,0 +1 @@
1
+ export { default as AppRightBar } from './AppRightBar';
@@ -0,0 +1,13 @@
1
+ interface IVideoProps {
2
+ isLoading?: boolean;
3
+ onGenerate: (value?: boolean) => void;
4
+ src: string;
5
+ isHls?: boolean;
6
+ isVideoGenerating?: boolean;
7
+ }
8
+ type TypeVideProps = (isAnnotated?: boolean) => IVideoProps;
9
+ export declare const getVideoTabsContent: (videoProps: TypeVideProps) => {
10
+ value: string;
11
+ content: import("react/jsx-runtime").JSX.Element;
12
+ }[];
13
+ export {};
@@ -0,0 +1 @@
1
+ export { default as Classifiers } from './Classifiers';
@@ -0,0 +1 @@
1
+ export { Classifiers } from '../apps/Classifiers';
package/dist/style.css ADDED
@@ -0,0 +1 @@
1
+ body{margin:0}*{box-sizing:border-box}
package/package.json ADDED
@@ -0,0 +1,68 @@
1
+ {
2
+ "name": "@conboai/app.db.query",
3
+ "version": "0.1.6",
4
+ "type": "module",
5
+ "main": "dist/app.db.query.js",
6
+ "types": "dist/build/index.d.ts",
7
+ "files": [
8
+ "dist"
9
+ ],
10
+ "publishConfig": {
11
+ "access": "public"
12
+ },
13
+ "validate-branch-name": {
14
+ "pattern": "^(master|main|develop){1}$|^(feature|hotfix|release|config|bugfix)/.+$"
15
+ },
16
+ "scripts": {
17
+ "dev": "vite",
18
+ "build": "tsc && vite build",
19
+ "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
20
+ "preview": "vite preview",
21
+ "prepare": "husky",
22
+ "storybook": "storybook dev -p 6006",
23
+ "build-storybook": "storybook build",
24
+ "generate-classifiers": "openapi --input https://plt.gateway.conbo.ai/api/classification/docs-yaml --output ./src/api/classifiers"
25
+ },
26
+ "dependencies": {
27
+ "@conboai/storybook.components": "^0.2.61",
28
+ "@emotion/react": "^11.11.4",
29
+ "@emotion/styled": "^11.11.5",
30
+ "@mui/material": "^5.15.17",
31
+ "ajv": "^8.16.0",
32
+ "dayjs": "^1.11.11",
33
+ "react": "^18.2.0",
34
+ "react-dom": "^18.2.0",
35
+ "uuid": "^9.0.1",
36
+ "zustand": "^4.5.2"
37
+ },
38
+ "devDependencies": {
39
+ "@chromatic-com/storybook": "^1.4.0",
40
+ "@storybook/addon-essentials": "^8.1.2",
41
+ "@storybook/addon-interactions": "^8.1.2",
42
+ "@storybook/addon-links": "^8.1.2",
43
+ "@storybook/addon-onboarding": "^8.1.2",
44
+ "@storybook/blocks": "^8.1.2",
45
+ "@storybook/react": "^8.1.2",
46
+ "@storybook/react-vite": "^8.1.2",
47
+ "@storybook/test": "^8.1.2",
48
+ "@types/react": "^18.2.66",
49
+ "@types/react-dom": "^18.2.22",
50
+ "@typescript-eslint/eslint-plugin": "^7.2.0",
51
+ "@typescript-eslint/parser": "^7.2.0",
52
+ "@vitejs/plugin-react": "^4.2.1",
53
+ "eslint": "^8.57.0",
54
+ "eslint-config-prettier": "^9.1.0",
55
+ "eslint-plugin-prettier": "^5.1.3",
56
+ "eslint-plugin-react-hooks": "^4.6.0",
57
+ "eslint-plugin-react-refresh": "^0.4.6",
58
+ "eslint-plugin-storybook": "^0.8.0",
59
+ "husky": "^9.0.11",
60
+ "openapi-typescript-codegen": "^0.29.0",
61
+ "prettier": "^3.2.5",
62
+ "storybook": "^8.1.2",
63
+ "typescript": "^5.2.2",
64
+ "validate-branch-name": "^1.3.0",
65
+ "vite": "^4.4.0",
66
+ "vite-plugin-dts": "^3.9.1"
67
+ }
68
+ }