@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.
Files changed (47) hide show
  1. package/README.md +1 -0
  2. package/dist/chunk-YH4NJHER.js +58 -0
  3. package/dist/components/ListCell.d.ts +27 -0
  4. package/dist/components/ListCell.js +123 -0
  5. package/dist/components/ListColumnHeader.d.ts +22 -0
  6. package/dist/components/ListColumnHeader.js +135 -0
  7. package/dist/components/ListOfTasks.d.ts +35 -0
  8. package/dist/components/ListOfTasks.js +1327 -0
  9. package/dist/components/ListOfWorkflows.d.ts +36 -0
  10. package/dist/components/ListOfWorkflows.js +974 -0
  11. package/dist/components/NoElementGivenByModule.d.ts +10 -0
  12. package/dist/components/NoElementGivenByModule.js +54 -0
  13. package/dist/components/NoUserTaskGiven.d.ts +10 -0
  14. package/dist/components/NoUserTaskGiven.js +23 -0
  15. package/dist/components/NoWorkflowGiven.d.ts +10 -0
  16. package/dist/components/NoWorkflowGiven.js +22 -0
  17. package/dist/components/SearchableAndSortableUpdatingList.d.ts +49 -0
  18. package/dist/components/SearchableAndSortableUpdatingList.js +200 -0
  19. package/dist/components/SnapScrolling.d.ts +15 -0
  20. package/dist/components/SnapScrolling.js +17 -0
  21. package/dist/components/SnapScrollingDataTable.d.ts +17 -0
  22. package/dist/components/SnapScrollingDataTable.js +113 -0
  23. package/dist/components/User.d.ts +11 -0
  24. package/dist/components/User.js +39 -0
  25. package/dist/components/UserAvatar.d.ts +12 -0
  26. package/dist/components/UserAvatar.js +133 -0
  27. package/dist/components/UserTaskPage.d.ts +24 -0
  28. package/dist/components/UserTaskPage.js +121 -0
  29. package/dist/components/WorkflowPage.d.ts +16 -0
  30. package/dist/components/WorkflowPage.js +124 -0
  31. package/dist/components/index.d.ts +25 -0
  32. package/dist/components/index.js +13 -0
  33. package/dist/index.d.ts +25 -0
  34. package/dist/index.js +3 -0
  35. package/dist/types/apis.d.ts +50 -0
  36. package/dist/types/apis.js +0 -0
  37. package/dist/types/index.d.ts +7 -0
  38. package/dist/types/index.js +3 -0
  39. package/dist/types/lists.d.ts +12 -0
  40. package/dist/types/lists.js +0 -0
  41. package/dist/types/navigate.d.ts +6 -0
  42. package/dist/types/navigate.js +0 -0
  43. package/dist/utils/index.d.ts +2 -0
  44. package/dist/utils/index.js +1 -0
  45. package/dist/utils/module-federation.d.ts +40 -0
  46. package/dist/utils/module-federation.js +182 -0
  47. 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 };