@vanillabp/bc-ui 0.0.3 → 0.0.4
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 -1
- package/dist/components/CustomWorkflowModuleComponent.d.ts +13 -0
- package/dist/components/CustomWorkflowModuleComponent.js +54 -0
- package/dist/components/FulltextSearchInput.d.ts +13 -0
- package/dist/components/FulltextSearchInput.js +159 -0
- package/dist/components/ListCell.d.ts +1 -2
- package/dist/components/ListCell.js +3 -5
- package/dist/components/ListColumnHeader.d.ts +7 -3
- package/dist/components/ListColumnHeader.js +27 -12
- package/dist/components/ListOfTasks.d.ts +7 -4
- package/dist/components/ListOfTasks.js +245 -157
- package/dist/components/ListOfWorkflows.d.ts +5 -2
- package/dist/components/ListOfWorkflows.js +150 -260
- package/dist/components/SearchableAndSortableUpdatingList.d.ts +3 -3
- package/dist/components/SearchableAndSortableUpdatingList.js +3 -2
- package/dist/components/SnapScrolling.d.ts +4 -4
- package/dist/components/SnapScrolling.js +1 -1
- package/dist/components/SnapScrollingDataTable.d.ts +2 -2
- package/dist/components/SnapScrollingDataTable.js +42 -17
- package/dist/components/User.d.ts +6 -4
- package/dist/components/User.js +34 -27
- package/dist/components/UserAvatar.d.ts +5 -3
- package/dist/components/UserAvatar.js +7 -35
- package/dist/components/UserTaskPage.d.ts +2 -1
- package/dist/components/UserTaskPage.js +21 -7
- package/dist/components/WorkflowPage.d.ts +3 -2
- package/dist/components/WorkflowPage.js +13 -5
- package/dist/components/index.d.ts +8 -6
- package/dist/components/index.js +2 -0
- package/dist/index.d.ts +7 -4
- package/dist/types/apis.d.ts +5 -3
- package/dist/types/index.d.ts +1 -1
- package/dist/types/lists.d.ts +2 -1
- package/dist/utils/column-type.d.ts +6 -0
- package/dist/utils/column-type.js +11 -0
- package/dist/utils/index.d.ts +2 -1
- package/dist/utils/index.js +1 -0
- package/dist/utils/module-federation.d.ts +5 -5
- package/dist/utils/module-federation.js +90 -38
- package/package.json +4 -4
|
@@ -3,14 +3,15 @@ import { SearchQuery } from '@vanillabp/bc-official-gui-client';
|
|
|
3
3
|
import { ShowLoadingIndicatorFunction, GuiSseHook, DefaultListHeaderAwareProps, TranslationFunction } from '@vanillabp/bc-shared';
|
|
4
4
|
import { BackgroundType, ColorType } from 'grommet/utils';
|
|
5
5
|
import { OpenTaskFunction, NavigateToWorkflowFunction } from '../types/navigate.js';
|
|
6
|
-
import { WorkflowlistApiHook } from '../types/apis.js';
|
|
6
|
+
import { WorkflowlistApiHook, TasklistApiHook } from '../types/apis.js';
|
|
7
7
|
import { ListOfWorkflowsHeaderFooterFunction } from '../types/lists.js';
|
|
8
8
|
import '@vanillabp/bc-official-gui-client/dist/models/UserTasks';
|
|
9
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, }: {
|
|
10
|
+
declare const ListOfWorkflows: ({ showLoadingIndicator, useGuiSse, useWorkflowlistApi, useTasklistApi, openTask, navigateToWorkflow, currentLanguage, defaultSort, defaultSortAscending, name, minWidthOfColumns, minWidthOfAutoColumn, columns, children, headerHeight, footer, footerHeight, t, rowSeparator, applyBackgroundColor, showColumnHeaders, excludeIdColumn, columnHeader, columnHeaderBackground, columnHeaderSeparator, defaultSearchQueries, }: {
|
|
11
11
|
showLoadingIndicator: ShowLoadingIndicatorFunction;
|
|
12
12
|
useGuiSse: GuiSseHook;
|
|
13
13
|
useWorkflowlistApi: WorkflowlistApiHook;
|
|
14
|
+
useTasklistApi: TasklistApiHook;
|
|
14
15
|
openTask: OpenTaskFunction;
|
|
15
16
|
navigateToWorkflow: NavigateToWorkflowFunction;
|
|
16
17
|
currentLanguage: string;
|
|
@@ -18,6 +19,8 @@ declare const ListOfWorkflows: ({ showLoadingIndicator, useGuiSse, useWorkflowli
|
|
|
18
19
|
defaultSortAscending?: boolean | undefined;
|
|
19
20
|
name?: string | undefined;
|
|
20
21
|
columns?: string[] | undefined;
|
|
22
|
+
minWidthOfColumns?: string | undefined;
|
|
23
|
+
minWidthOfAutoColumn?: string | undefined;
|
|
21
24
|
children?: ListOfWorkflowsHeaderFooterFunction | undefined;
|
|
22
25
|
headerHeight?: string | undefined;
|
|
23
26
|
footer?: ListOfWorkflowsHeaderFooterFunction | undefined;
|