@mparticle/aquarium 1.47.0 → 1.48.0-chore-data-models-nav-item.2
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 +3 -1
- package/dist/aquarium.js +2902 -2889
- package/dist/aquarium.umd.cjs +36 -36
- package/dist/src/components/index.d.ts +1 -0
- package/dist/src/components/layout/Splitter/Splitter.d.ts +22 -0
- package/dist/src/shared/Paths.d.ts +1 -0
- package/dist/src/shared/services/NavigationItemsService.d.ts +2 -0
- package/dist/src/shared/services/routeAuthorizations/data-platform-authorizations.d.ts +3 -2
- package/package.json +1 -1
|
@@ -71,6 +71,7 @@ export { Pagination, type IPaginationProps } from './navigation/Pagination/Pagin
|
|
|
71
71
|
export { Menu, type IMenuProps, type MenuItemType, type SubMenuType, type MenuItemGroupType, type MenuDividerType, type IMenuInfo, } from './navigation/Menu/Menu';
|
|
72
72
|
export { ConfigProvider, type IConfigProviderProps } from './other/ConfigProvider/ConfigProvider';
|
|
73
73
|
export { Affix, type IAffixProps } from './not-prod-ready/Affix/Affix';
|
|
74
|
+
export { Splitter, type ISplitterProps, type ISplitterPanelProps } from './layout/Splitter/Splitter';
|
|
74
75
|
export { GlobalNavigation, GlobalNavWidth, type IGlobalNavigationProps, } from './navigation/GlobalNavigation/GlobalNavigation';
|
|
75
76
|
export type { IBaseGlobalNavigationItem, IGlobalNavigationItem, IGlobalNavigationLogo, } from './navigation/GlobalNavigation/GlobalNavigationItems';
|
|
76
77
|
export type { INavigationCreateProps, INavigationCreateGroup, INavigationCreateItem, } from './navigation/GlobalNavigation/NavigationCreate';
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import type { SplitterProps as AntSplitterProps } from 'antd/es/splitter';
|
|
2
|
+
import type { ReactNode } from 'react';
|
|
3
|
+
import { type PanelProps as AntPanelProps } from 'antd/es/splitter/interface';
|
|
4
|
+
export interface ISplitterProps extends AntSplitterProps {
|
|
5
|
+
children?: ReactNode;
|
|
6
|
+
}
|
|
7
|
+
export interface ISplitterPanelProps extends AntPanelProps {
|
|
8
|
+
children?: ReactNode;
|
|
9
|
+
defaultSize?: string | number;
|
|
10
|
+
size?: string | number;
|
|
11
|
+
min?: string | number;
|
|
12
|
+
max?: string | number;
|
|
13
|
+
collapsible?: boolean | {
|
|
14
|
+
start?: boolean;
|
|
15
|
+
end?: boolean;
|
|
16
|
+
};
|
|
17
|
+
resizable?: boolean;
|
|
18
|
+
}
|
|
19
|
+
export declare const Splitter: {
|
|
20
|
+
(props: ISplitterProps): import("react/jsx-runtime").JSX.Element;
|
|
21
|
+
Panel: (props: ISplitterPanelProps) => import("react/jsx-runtime").JSX.Element;
|
|
22
|
+
};
|
|
@@ -58,6 +58,7 @@ export declare const Paths: {
|
|
|
58
58
|
readonly Trends: "/data-platform/trends";
|
|
59
59
|
readonly Setup: {
|
|
60
60
|
readonly Root: "/data-platform/setup";
|
|
61
|
+
readonly DataModels: "/data-platform/setup/data-models";
|
|
61
62
|
readonly Connections: "/data-platform/setup/connections";
|
|
62
63
|
readonly Inputs: {
|
|
63
64
|
readonly Root: "/data-platform/setup/inputs";
|
|
@@ -19,12 +19,14 @@ export declare enum NavigationItemId {
|
|
|
19
19
|
DataPlatform = "dataPlatform",
|
|
20
20
|
DataPlatform_Trends = "dataPlatform_trends",
|
|
21
21
|
DataPlatform_Setup = "dataPlatform_setup",
|
|
22
|
+
DataPlatform_Setup_DataModels = "dataPlatform_setup_dataModels",
|
|
22
23
|
DataPlatform_Setup_Connections = "dataPlatform_setup_connections",
|
|
23
24
|
DataPlatform_Setup_Inputs = "dataPlatform_setup_inputs",
|
|
24
25
|
DataPlatform_Setup_Outputs = "dataPlatform_setup_outputs",
|
|
25
26
|
DataPlatform_Setup_Directory = "dataPlatform_setup_directory",
|
|
26
27
|
DataPlatform_LiveStream = "dataPlatform_liveStream",
|
|
27
28
|
DataPlatform_DataCatalog = "dataPlatform_dataCatalog",
|
|
29
|
+
DataPlatform_DataModels = "dataPlatform_dataModels",
|
|
28
30
|
DataPlatform_Transformations_Rules = "dataPlatform_transformations_rules",
|
|
29
31
|
DataPlatform_Transformations_Plans = "dataPlatform_transformations_plans",
|
|
30
32
|
DataPlatform_Transformations_Filters = "dataPlatform_transformations_filters",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { BaseRoutesAuthorizations } from
|
|
2
|
-
import { Suite } from
|
|
1
|
+
import { BaseRoutesAuthorizations } from './base-routes-authorizations';
|
|
2
|
+
import { Suite } from '../../Suite';
|
|
3
3
|
export declare class DataPlatformAuthorizations extends BaseRoutesAuthorizations {
|
|
4
4
|
protected suite: Suite;
|
|
5
5
|
protected getAuthorizations(): Record<string, boolean>;
|
|
@@ -8,6 +8,7 @@ export declare class DataPlatformAuthorizations extends BaseRoutesAuthorizations
|
|
|
8
8
|
private canViewPlatformTrends;
|
|
9
9
|
private canViewLiveStream;
|
|
10
10
|
private canViewEventForwarding;
|
|
11
|
+
private canViewDataModels;
|
|
11
12
|
private canViewConnections;
|
|
12
13
|
private canViewInputs;
|
|
13
14
|
private canViewOutputs;
|