@conboai/app.db.query 0.2.0 → 0.2.3
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 +13279 -12305
- package/dist/apps/Cargo/Cargo.d.ts +5 -0
- package/dist/apps/Cargo/components/AppContent/AppContent.d.ts +2 -0
- package/dist/apps/Cargo/components/AppContent/columnDefs.d.ts +10 -0
- package/dist/apps/Cargo/components/AppContent/index.d.ts +1 -0
- package/dist/apps/Cargo/components/AppLeftBar/AppLeftBar.d.ts +6 -0
- package/dist/apps/Cargo/components/AppLeftBar/index.d.ts +1 -0
- package/dist/apps/Cargo/components/AppLeftBar/styles.d.ts +5 -0
- package/dist/apps/Cargo/components/AppRightBar/AppRightBar.d.ts +2 -0
- package/dist/apps/Cargo/components/AppRightBar/columnsDefs.d.ts +14 -0
- package/dist/apps/Cargo/components/AppRightBar/constants.d.ts +12 -0
- package/dist/apps/Cargo/components/AppRightBar/index.d.ts +1 -0
- package/dist/apps/Cargo/components/AppRightBar/utils.d.ts +15 -0
- package/dist/apps/Cargo/index.d.ts +1 -0
- package/dist/apps/Cargo/mocks.d.ts +5 -0
- package/dist/apps/Cargo/styles.d.ts +3 -0
- package/dist/build/index.d.ts +1 -0
- package/package.json +3 -2
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as AppContent } from './AppContent.tsx';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as AppLeftBar } from './AppLeftBar.tsx';
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
|
|
2
|
+
export declare const verticalTableColumnDefs: (timezone: string, feeds: any[]) => ({
|
|
3
|
+
headerName: string;
|
|
4
|
+
field: string;
|
|
5
|
+
renderCell?: undefined;
|
|
6
|
+
} | {
|
|
7
|
+
headerName: string;
|
|
8
|
+
field: string;
|
|
9
|
+
renderCell: (value: number) => string;
|
|
10
|
+
} | {
|
|
11
|
+
headerName: string;
|
|
12
|
+
field: string;
|
|
13
|
+
renderCell: (value: string) => any;
|
|
14
|
+
})[];
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as AppRightBar } from './AppRightBar';
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
interface IImageContent {
|
|
2
|
+
feedImages: string[];
|
|
3
|
+
objectImages: string[];
|
|
4
|
+
}
|
|
5
|
+
export declare const getImageContent: ({ feedImages, objectImages }: IImageContent) => {
|
|
6
|
+
value: string;
|
|
7
|
+
content: import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
}[];
|
|
9
|
+
export declare const getImageTabs: (feed: string[], object: string[]) => {
|
|
10
|
+
label: string;
|
|
11
|
+
value: string;
|
|
12
|
+
disabled: boolean;
|
|
13
|
+
}[];
|
|
14
|
+
export declare const generateImages: (images: any[]) => string[];
|
|
15
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as Cargo } from './Cargo.tsx';
|
package/dist/build/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@conboai/app.db.query",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.3",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/app.db.query.js",
|
|
6
6
|
"types": "dist/build/index.d.ts",
|
|
@@ -21,7 +21,8 @@
|
|
|
21
21
|
"prepare": "husky",
|
|
22
22
|
"storybook": "storybook dev -p 6006",
|
|
23
23
|
"build-storybook": "storybook build",
|
|
24
|
-
"generate-classifiers": "openapi --input https://plt.gateway.conbo.ai/api/classification/docs-yaml --output ./src/api/classifiers"
|
|
24
|
+
"generate-classifiers": "openapi --input https://plt.gateway.conbo.ai/api/classification/docs-yaml --output ./src/api/classifiers",
|
|
25
|
+
"generate-cargo": "openapi --input https://plt.gateway.conbo.ai/api/action/docs-yaml --output ./src/api/cargo"
|
|
25
26
|
},
|
|
26
27
|
"dependencies": {
|
|
27
28
|
"@conboai/storybook.components": "^0.2.61",
|