aiware-js 1.40.0 → 1.43.0

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.
@@ -558,16 +558,16 @@
558
558
  /**
559
559
  * Custom scroll bar override start
560
560
  */
561
- ::-webkit-scrollbar {
561
+ .aiware-el ::-webkit-scrollbar {
562
562
  width: 8px !important;
563
563
  }
564
564
 
565
- ::-webkit-scrollbar-track:hover {
565
+ .aiware-el ::-webkit-scrollbar-track:hover {
566
566
  opacity: 0.1 !important;
567
567
  background: #ffffff;
568
568
  }
569
569
 
570
- ::-webkit-scrollbar-thumb {
570
+ .aiware-el ::-webkit-scrollbar-thumb {
571
571
  background: #c4c4c4 !important;
572
572
  border-radius: 3px !important;
573
573
  }
package/lib/registry.d.ts CHANGED
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { AppBar } from '@aiware/os/app-bar';
2
3
  import { App as FlowWidget } from '@aiware/os/flow-widget';
3
4
  import { EditProFilePicture, VeritonePanel } from '@aiware/os/app-bar-panel';
@@ -12,7 +13,8 @@ export declare enum AvailableWidgets {
12
13
  SAMPLE_APP_BAR = "SAMPLE_APP_BAR",
13
14
  APP_BAR = "APP_BAR",
14
15
  FLOW_CENTER = "FLOW_CENTER",
15
- FLOW_WIDGET = "FLOW_WIDGET"
16
+ FLOW_WIDGET = "FLOW_WIDGET",
17
+ ENGINE_CENTER_BROWSE = "ENGINE_CENTER_BROWSE"
16
18
  }
17
19
  export declare enum AvailablePanels {
18
20
  SIMPLE_PANEL = "SIMPLE_PANEL",
@@ -35,9 +37,17 @@ export declare enum AvailableComponents {
35
37
  SETTING_PREFERENCE = "SETTING_PREFERENCE",
36
38
  ORGANIZATION_PANEL = "ORGANIZATION_PANEL",
37
39
  DATA_CENTER_BROWSE = "DATA_CENTER_BROWSE",
40
+ DATA_CENTER_FOLDERS_AND_FILES = "DATA_CENTER_FOLDERS_AND_FILES",
38
41
  DATA_CENTER_IMPORTER = "DATA_CENTER_IMPORTER",
39
42
  DATA_LABELER = "DATA_LABELER",
40
- ADMIN_CENTER_OPEN_ID = "ADMIN_CENTER_OPEN_ID"
43
+ ADMIN_CENTER_OPEN_ID = "ADMIN_CENTER_OPEN_ID",
44
+ DATA_CENTER_PROCESS_AI = "DATA_CENTER_PROCESS_AI",
45
+ ENGINE_CENTER_NEW = "ENGINE_CENTER_NEW",
46
+ ENGINE_CENTER_FILTER = "ENGINE_CENTER_FILTER",
47
+ SUPPORTED_FILE_TYPES = "SUPPORTED_FILE_TYPES",
48
+ EDIT_FILE_METADATA = "EDIT_FILE_METADATA",
49
+ APP_CENTER_NEW = "APP_CENTER_NEW",
50
+ DATA_CENTER_ENGINE_SELECTION = "DATA_CENTER_ENGINE_SELECTION"
41
51
  }
42
52
  /**
43
53
  * Register The Widget
@@ -47,6 +57,9 @@ export declare const registry: {
47
57
  APP_BAR: typeof AppBar;
48
58
  FLOW_CENTER: (props: import("../../../../../dist/libs/os/flow-center/lib/interfaces").IFlowCenterConfig) => JSX.Element;
49
59
  FLOW_WIDGET: typeof FlowWidget;
60
+ ENGINE_CENTER_BROWSE: (props: {
61
+ baseRedirectUrl: string;
62
+ }) => JSX.Element;
50
63
  SIMPLE_PANEL: ({ panelId: id, children }: import("../../../../../dist/libs/js/interfaces").ISimplePanelConfig) => JSX.Element;
51
64
  APP_BAR_PANEL_TEMPLATE: (props: import("../../../../../dist/libs/js/interfaces").IVeritoneAppbarPanelConfig) => JSX.Element;
52
65
  APP_BAR_TAB_PANEL_TEMPLATE: typeof AppbarTabPanel;
@@ -68,11 +81,13 @@ export declare const registry: {
68
81
  dataId: string;
69
82
  panelRendered: boolean;
70
83
  hidePanel?: (() => void) | undefined;
71
- }) => JSX.Element | null;
84
+ }) => JSX.Element;
85
+ DATA_CENTER_FOLDERS_AND_FILES: import("react").FunctionComponent<import("../../../../../dist/libs/os/data-center/browse/lib/components/FoldersAndFilesPanel/FoldersAndFilesPanel").IFoldersAndFilesPanel>;
72
86
  DATA_CENTER_IMPORTER: (props: {
73
87
  dataId: string;
74
88
  panelRendered: boolean;
75
89
  hidePanel?: (() => void) | undefined;
90
+ fileLimit?: number | undefined;
76
91
  }) => JSX.Element;
77
92
  DATA_LABELER: (props: {
78
93
  blueEyeConfig: import("../../../../../dist/libs/os/data-labeler/types").BlueEyeConfig;
@@ -88,6 +103,45 @@ export declare const registry: {
88
103
  appId: string;
89
104
  connectorId: string;
90
105
  }) => JSX.Element;
106
+ DATA_CENTER_PROCESS_AI: (props: {
107
+ dataId: string;
108
+ panelRendered: boolean;
109
+ hidePanel?: (() => void) | undefined;
110
+ tdoId?: string | undefined;
111
+ }) => JSX.Element;
112
+ ENGINE_CENTER_NEW: (props: {
113
+ dataId: string;
114
+ panelRendered: boolean;
115
+ hidePanel?: (() => void) | undefined;
116
+ }) => JSX.Element;
117
+ ENGINE_CENTER_FILTER: (props: {
118
+ dataId: string;
119
+ panelRendered: boolean;
120
+ hidePanel?: (() => void) | undefined;
121
+ }) => JSX.Element;
122
+ SUPPORTED_FILE_TYPES: (props: {
123
+ dataId: string;
124
+ panelRendered: boolean;
125
+ hidePanel?: (() => void) | undefined;
126
+ fileTypes?: import("../../../../../dist/libs/os/data-center/importer/lib/components/SupportedFileTypes/FileTypeItem").IFileTypeItem[] | undefined;
127
+ }) => JSX.Element;
128
+ EDIT_FILE_METADATA: (props: {
129
+ dataId: string;
130
+ panelRendered: boolean;
131
+ hidePanel?: (() => void) | undefined;
132
+ file: import("../../../../../dist/libs/os/data-center/importer/types").IFile;
133
+ }) => JSX.Element;
134
+ APP_CENTER_NEW: (props: {
135
+ dataId: string;
136
+ panelRendered: boolean;
137
+ hidePanel?: (() => void) | undefined;
138
+ }) => JSX.Element;
139
+ DATA_CENTER_ENGINE_SELECTION: (props: {
140
+ dataId: string;
141
+ panelRendered: boolean;
142
+ capability: import("../../../../../dist/libs/os/data-center/process-ai/types").ICapability;
143
+ hidePanel?: (() => void) | undefined;
144
+ }) => JSX.Element;
91
145
  };
92
146
  /**
93
147
  * Export Component Prop Types
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aiware-js",
3
- "version": "1.40.0",
3
+ "version": "1.43.0",
4
4
  "private": false,
5
5
  "main": "./js-core.umd.js",
6
6
  "module": "./js-core.esm.js",
@@ -9,10 +9,10 @@
9
9
  "peerDependencies": {
10
10
  "shared-store": "0.0.1",
11
11
  "js-constants": "0.0.1",
12
+ "js-function": "0.0.1",
12
13
  "js-interfaces": "0.0.1",
13
14
  "shared-theme": "0.0.1",
14
15
  "shared-redux": "0.0.1",
15
- "js-function": "0.0.1",
16
16
  "os-app-bar-panel": "0.0.1",
17
17
  "os-sample-app-bar-assets": "0.0.1",
18
18
  "classnames": "2.3.1",
@@ -43,6 +43,10 @@
43
43
  "os-data-center-importer": "0.0.1",
44
44
  "os-data-labeler": "0.0.1",
45
45
  "os-admin-center-open-id": "0.0.1",
46
+ "os-data-center-process-ai": "0.0.1",
47
+ "os-engine-center-new": "0.0.1",
48
+ "os-app-center-new": "0.0.1",
49
+ "os-engine-center-browse": "0.0.1",
46
50
  "os-panel": "0.0.1",
47
51
  "os-organization-panel": "0.0.1"
48
52
  }
@@ -1,2 +0,0 @@
1
- export declare const getUniqueID: () => string;
2
- export default getUniqueID;