@vanillabp/bc-ui 0.0.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/README.md +1 -0
- package/dist/chunk-YH4NJHER.js +58 -0
- package/dist/components/ListCell.d.ts +27 -0
- package/dist/components/ListCell.js +123 -0
- package/dist/components/ListColumnHeader.d.ts +22 -0
- package/dist/components/ListColumnHeader.js +135 -0
- package/dist/components/ListOfTasks.d.ts +35 -0
- package/dist/components/ListOfTasks.js +1327 -0
- package/dist/components/ListOfWorkflows.d.ts +36 -0
- package/dist/components/ListOfWorkflows.js +974 -0
- package/dist/components/NoElementGivenByModule.d.ts +10 -0
- package/dist/components/NoElementGivenByModule.js +54 -0
- package/dist/components/NoUserTaskGiven.d.ts +10 -0
- package/dist/components/NoUserTaskGiven.js +23 -0
- package/dist/components/NoWorkflowGiven.d.ts +10 -0
- package/dist/components/NoWorkflowGiven.js +22 -0
- package/dist/components/SearchableAndSortableUpdatingList.d.ts +49 -0
- package/dist/components/SearchableAndSortableUpdatingList.js +200 -0
- package/dist/components/SnapScrolling.d.ts +15 -0
- package/dist/components/SnapScrolling.js +17 -0
- package/dist/components/SnapScrollingDataTable.d.ts +17 -0
- package/dist/components/SnapScrollingDataTable.js +113 -0
- package/dist/components/User.d.ts +11 -0
- package/dist/components/User.js +39 -0
- package/dist/components/UserAvatar.d.ts +12 -0
- package/dist/components/UserAvatar.js +133 -0
- package/dist/components/UserTaskPage.d.ts +24 -0
- package/dist/components/UserTaskPage.js +121 -0
- package/dist/components/WorkflowPage.d.ts +16 -0
- package/dist/components/WorkflowPage.js +124 -0
- package/dist/components/index.d.ts +25 -0
- package/dist/components/index.js +13 -0
- package/dist/index.d.ts +25 -0
- package/dist/index.js +3 -0
- package/dist/types/apis.d.ts +50 -0
- package/dist/types/apis.js +0 -0
- package/dist/types/index.d.ts +7 -0
- package/dist/types/index.js +3 -0
- package/dist/types/lists.d.ts +12 -0
- package/dist/types/lists.js +0 -0
- package/dist/types/navigate.d.ts +6 -0
- package/dist/types/navigate.js +0 -0
- package/dist/utils/index.d.ts +2 -0
- package/dist/utils/index.js +1 -0
- package/dist/utils/module-federation.d.ts +40 -0
- package/dist/utils/module-federation.js +182 -0
- package/package.json +66 -0
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { FC } from 'react';
|
|
2
|
+
import { SearchQuery } from '@vanillabp/bc-official-gui-client';
|
|
3
|
+
import { ShowLoadingIndicatorFunction, GuiSseHook, DefaultListHeaderAwareProps, TranslationFunction } from '@vanillabp/bc-shared';
|
|
4
|
+
import { BackgroundType, ColorType } from 'grommet/utils';
|
|
5
|
+
import { OpenTaskFunction, NavigateToWorkflowFunction } from '../types/navigate.js';
|
|
6
|
+
import { WorkflowlistApiHook } from '../types/apis.js';
|
|
7
|
+
import { ListOfWorkflowsHeaderFooterFunction } from '../types/lists.js';
|
|
8
|
+
import '@vanillabp/bc-official-gui-client/dist/models/UserTasks';
|
|
9
|
+
|
|
10
|
+
declare const ListOfWorkflows: ({ showLoadingIndicator, useGuiSse, useWorkflowlistApi, openTask, navigateToWorkflow, currentLanguage, defaultSort, defaultSortAscending, name, columns, children, headerHeight, footer, footerHeight, t, rowSeparator, applyBackgroundColor, showColumnHeaders, excludeIdColumn, columnHeader, columnHeaderBackground, columnHeaderSeparator, defaultSearchQueries, }: {
|
|
11
|
+
showLoadingIndicator: ShowLoadingIndicatorFunction;
|
|
12
|
+
useGuiSse: GuiSseHook;
|
|
13
|
+
useWorkflowlistApi: WorkflowlistApiHook;
|
|
14
|
+
openTask: OpenTaskFunction;
|
|
15
|
+
navigateToWorkflow: NavigateToWorkflowFunction;
|
|
16
|
+
currentLanguage: string;
|
|
17
|
+
defaultSort?: string | undefined;
|
|
18
|
+
defaultSortAscending?: boolean | undefined;
|
|
19
|
+
name?: string | undefined;
|
|
20
|
+
columns?: string[] | undefined;
|
|
21
|
+
children?: ListOfWorkflowsHeaderFooterFunction | undefined;
|
|
22
|
+
headerHeight?: string | undefined;
|
|
23
|
+
footer?: ListOfWorkflowsHeaderFooterFunction | undefined;
|
|
24
|
+
footerHeight?: string | undefined;
|
|
25
|
+
rowSeparator?: string | boolean | undefined;
|
|
26
|
+
applyBackgroundColor?: boolean | undefined;
|
|
27
|
+
showColumnHeaders?: boolean | undefined;
|
|
28
|
+
excludeIdColumn?: boolean | undefined;
|
|
29
|
+
columnHeader?: FC<DefaultListHeaderAwareProps<any>> | undefined;
|
|
30
|
+
columnHeaderBackground?: BackgroundType | undefined;
|
|
31
|
+
columnHeaderSeparator?: ColorType | null;
|
|
32
|
+
t: TranslationFunction;
|
|
33
|
+
defaultSearchQueries?: SearchQuery[] | undefined;
|
|
34
|
+
}) => JSX.Element;
|
|
35
|
+
|
|
36
|
+
export { ListOfWorkflows };
|