@sistent/sistent 0.15.0 → 0.15.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/dist/index.d.mts +53 -1
- package/dist/index.d.ts +53 -1
- package/dist/index.js +28 -28
- package/dist/index.mjs +29 -29
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -5,6 +5,8 @@ import React$1, { MutableRefObject, FC, SVGProps, CSSProperties, ReactNode } fro
|
|
|
5
5
|
export { outlinedInputClasses } from '@mui/material/OutlinedInput';
|
|
6
6
|
export { tooltipClasses } from '@mui/material/Tooltip';
|
|
7
7
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
8
|
+
import * as _emotion_styled from '@emotion/styled';
|
|
9
|
+
import * as _mui_system from '@mui/system';
|
|
8
10
|
import { Store as Store$1, Dispatch } from 'redux';
|
|
9
11
|
import { TypographyOptions } from '@mui/material/styles/createTypography';
|
|
10
12
|
import { EmotionCache } from '@emotion/react';
|
|
@@ -876,6 +878,51 @@ declare const RenderMarkdown: React.FC<RenderMarkdownProps>;
|
|
|
876
878
|
declare const RenderMarkdownTooltip: React.FC<RenderMarkdownProps>;
|
|
877
879
|
declare const BasicMarkdown: React.FC<RenderMarkdownProps>;
|
|
878
880
|
|
|
881
|
+
interface ModalProps extends DialogProps {
|
|
882
|
+
closeModal: () => void;
|
|
883
|
+
title: string;
|
|
884
|
+
headerIcon?: React$1.ReactNode;
|
|
885
|
+
reactNode?: React$1.ReactNode;
|
|
886
|
+
isFullScreenModeAllowed?: boolean;
|
|
887
|
+
}
|
|
888
|
+
interface ModalFooterProps {
|
|
889
|
+
children: React$1.ReactNode;
|
|
890
|
+
variant?: 'filled' | 'transparent';
|
|
891
|
+
helpText?: string;
|
|
892
|
+
hasHelpText?: boolean;
|
|
893
|
+
}
|
|
894
|
+
type openModalCallback = (props: {
|
|
895
|
+
title: string;
|
|
896
|
+
reactNode?: React$1.ReactNode;
|
|
897
|
+
onClose?: () => void;
|
|
898
|
+
}) => void;
|
|
899
|
+
interface UseModalReturnI extends ModalProps {
|
|
900
|
+
openModal: openModalCallback;
|
|
901
|
+
isOpen: boolean;
|
|
902
|
+
}
|
|
903
|
+
declare const CloseBtn: _emotion_styled.StyledComponent<Omit<IconButtonProps, "ref"> & React$1.RefAttributes<HTMLButtonElement> & _mui_system.MUIStyledCommonProps<_mui_material.Theme>, {}, {}>;
|
|
904
|
+
declare const ModalStyledHeader: _emotion_styled.StyledComponent<_mui_system.MUIStyledCommonProps<_mui_material.Theme>, React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
905
|
+
declare const useModal: ({ headerIcon }: {
|
|
906
|
+
headerIcon: React$1.ReactNode;
|
|
907
|
+
}) => UseModalReturnI;
|
|
908
|
+
declare const ModalBody: _emotion_styled.StyledComponent<Omit<_mui_material.PaperProps, "ref"> & React$1.RefAttributes<HTMLDivElement> & _mui_system.MUIStyledCommonProps<_mui_material.Theme>, {}, {}>;
|
|
909
|
+
declare const Modal: React$1.FC<ModalProps>;
|
|
910
|
+
declare const ModalFooter: React$1.FC<ModalFooterProps>;
|
|
911
|
+
interface ModalButtonPrimaryProps extends ButtonProps$1 {
|
|
912
|
+
isOpen?: boolean;
|
|
913
|
+
}
|
|
914
|
+
declare const ModalButtonPrimary: _emotion_styled.StyledComponent<ButtonProps & _mui_system.MUIStyledCommonProps<_mui_material.Theme> & ModalButtonPrimaryProps, {}, {}>;
|
|
915
|
+
declare const ModalButtonSecondary: _emotion_styled.StyledComponent<ButtonProps & _mui_system.MUIStyledCommonProps<_mui_material.Theme>, {}, {}>;
|
|
916
|
+
declare const ModalButtonTertiary: _emotion_styled.StyledComponent<ButtonProps & _mui_system.MUIStyledCommonProps<_mui_material.Theme>, {}, {}>;
|
|
917
|
+
declare const ModalButtonDanger: _emotion_styled.StyledComponent<ButtonProps & _mui_system.MUIStyledCommonProps<_mui_material.Theme>, {}, {}>;
|
|
918
|
+
interface PrimaryActionButtonsProps {
|
|
919
|
+
primaryText: string;
|
|
920
|
+
secondaryText: string;
|
|
921
|
+
primaryButtonProps?: React$1.ComponentProps<typeof ModalButtonPrimary>;
|
|
922
|
+
secondaryButtonProps?: React$1.ComponentProps<typeof ModalButtonSecondary>;
|
|
923
|
+
}
|
|
924
|
+
declare const PrimaryActionButtons: React$1.FC<PrimaryActionButtonsProps>;
|
|
925
|
+
|
|
879
926
|
interface ICEServer {
|
|
880
927
|
urls: string;
|
|
881
928
|
username?: string;
|
|
@@ -2354,6 +2401,11 @@ type PrimitivePalette = {
|
|
|
2354
2401
|
*/
|
|
2355
2402
|
foreground: string;
|
|
2356
2403
|
};
|
|
2404
|
+
/**
|
|
2405
|
+
* Layer5 ( primitives ) defines the raw, brand-level colors used in the UI.
|
|
2406
|
+
*/
|
|
2407
|
+
declare const SistentDefaultPrimitivePaletteLight: PrimitivePalette;
|
|
2408
|
+
declare const SistentDefaultPrimitivePaletteDark: PrimitivePalette;
|
|
2357
2409
|
|
|
2358
2410
|
/**
|
|
2359
2411
|
* Define the base common colors to derive from
|
|
@@ -2655,4 +2707,4 @@ declare const FormattedTime: ({ date }: {
|
|
|
2655
2707
|
date: string;
|
|
2656
2708
|
}) => react_jsx_runtime.JSX.Element;
|
|
2657
2709
|
|
|
2658
|
-
export { ALABASTER_WHITE, ALICE_BLUE, ANAKIWA, Accordion, AccordionActions, AccordionDetails, AccordionSummary, AddIconCircleBordered as AddCircleIcon, AddIcon, Alert, AlertTitle, AppBar, ApplicationIcon, ArrowCompressIcon$1 as ArrowCompressIcon, ArrowCompressIcon as ArrowExpandIcon, Autocomplete, Avatar, AvatarGroup, BLACK, Backdrop, Badge, BasicMarkdown, BellIcon, Box, Breadcrumbs, BusIcon, Button, ButtonGroup, CARIBBEAN_GREEN, CASPER, CHARCOAL, CHINESE_SILVER, CONNECTED, CULTURED, CalenderIcon, Card, CardActions, CardContent, CardHeader, CardMedia, CaretDownIcon, CatalogIcon, ChainIcon, ChallengesIcon, CheckCircleIcon, Checkbox, ChevronLeft, Chip, CircleIcon, CircularProgress, ClickAwayListener, CloneIcon, CloseIcon, CloudSavedIcon, Collapse, CollapsAllIcon as CollapseAllIcon, ColumnIcon, CommunityClassIcon, ComponentIcon, ConfigurationIcon, Container, ContentFilterIcon, CopyIcon, CopyLinkIcon, CreateNewIcon, CredentialIcon, CrossCircleIcon, CssBaseline, CustomTooltip, DARK_BLUE_GRAY, DARK_PRIMARY_COLOR, DARK_SHADE_GRAY, DARK_SLATE_GRAY, DARK_TEAL, DATA_VALIDATOR_COMMANDS, DATA_VALIDATOR_EVENTS, DELETED, DISCONNECTED, DISCOVERED, DashboardIcon, type DataType, DatabaseIcon, DeferEvents, DeleteIcon, DeploymentsIcon, DesignIcon, DesignerBottomRightIcon, DetailsIcon as DetailIcon, DetailsIcon, Dialog, DialogActions, DialogContent, DialogContentText, DialogTitle, Divider, DocumentIcon, DoneAllIcon, DoneIcon, DownloadIcon$1 as DownloadIcon, DragIcon, Drawer, DropDownIcon, EERIE_BLACK, EditIcon, EmptyStyleIcon, EnvironmentIcon, ErrorIcon, EventBus, type EventBusEvent, type EventType, ExpandAllIcon, DownloadIcon as ExportIcon, ExternalLinkIcon, Fab, FacebookIcon, Fade, FavoriteIcon, FeedbackIcon, FileIcon, FilterIcon, FormControl, FormControlLabel, FormGroup, FormLabel, FormattedTime, FullScreenIcon, FullScreenExitIcon as FullScreenIconExit, GRAY, GRAY97, GREEN, GetStartedIcon, GithubIcon, GoogleIcon, Grid, Grid2, GridViewIcon, Grow, HelpOutlinedIcon, HelperTextPopover, Hidden, IGNORED, IconButton, IdeaIcon, InfoCircleIcon, InfoIcon, InfoOutlinedIcon as InfoOutlined, InfoTooltip, Input, InputAdornment, InputBase, InputLabel, InsertChartIcon, InviteUserIcon, KEPPEL, KanvasIcon, KeppelApplicationIcon, KeppelRectangleIcon, KeppelTallRoundedRectangleIcon, KubernetesIcon, LIGHT_GRAY, LIGHT_TEAL, LIMED_SPRUCE, LeaderboardIcon as LeaderBoardIcon, LearningIcon, LeftAngledArrowIcon, LeftArrowIcon, LinearProgress, Link, LinkedinIcon, List, ListItem, ListItemAvatar, ListItemButton, ListItemIcon, ListItemSecondaryAction, ListItemText, ListSubheader, LockIcon, LogoutIcon, MAINTAINENCE, MIDNIGHT_BLACK, MendeleyIcon, Menu, MenuIcon, MenuItem, MenuList, MesheryFilterIcon, MesheryOperator, MoveFileIcon, NOT_FOUND, NativeSelect, NoSsr, ONYX_BLACK, OfficialClassIcon, OpenFileIcon, OpenIcon, OpenInNewIcon, OrgIcon, OutlinedApplicationIcon, OutlinedCircleIcon, OutlinedCloudSavingIcon, OutlinedDataObjectIcon, OutlinedDeployIcon, OutlinedDoubleChevronIcon, OutlinedHierarchicalIcon, OutlinedInput, OutlinedMeshIcon, OutlinedPatternIcon, OutlinedPatternSwitchIcon, OutlinedPodIcon, OutlinedRectangleIcon, OutlinedRedoIcon, OutlinedResetIcon, OutlinedRingIcon, OutlinedScreenshotIcon, OutlinedSettingsIcon, OutlinedStarIcon, OutlinedTallRoundedRectangleIcon, OutlinedUndeployIcon, OutlinedUndoIcon, OutlinedValidateIcon, OutlinedVisibilityOffIcon, OutlinedVisibilityOnIcon, OutlinedVisualizerSwitcherIcon, PATTERNS_BLUE, PRIMARY_COLOR, Pagination, PanToolIcon, Paper, PersistedStateProvider, PersonIcon, PollIcon, Popover, Popper, type PrimitivePalette, PublicIcon, PublishIcon, QuestionIcon, REDUX_COMMANDS, REDUX_EVENTS, REEE, REGISTERED, type REXUX_ACTOR_EVENTS, RTK_EVENTS, Radio, RadioGroup, ReadIcon, RectangleIcon, type RehydrateStateAction, RemoveDoneIcon, RemoveIcon, RenderMarkdown, type RenderMarkdownProps, RenderMarkdownTooltip, RightArrowIcon, RoundedRectangleShapeIcon, RoundTriangleShapeIcon as RoundedTriangleShapeIcon, SAFFRON, SILVER_GRAY, SLATE_BLUE, SMPIcon, SaveAsIcon, SearchIcon, Select, ShareIcon, ShareLineIcon, SistentThemeProvider, SistentThemeProviderWithoutBaseLine, Skeleton, Slide, Slider, Snackbar, SpeedDial, SpeedDialAction, Stack, Step, StepButton, StepConnector, StepContent, StepIcon, StepLabel, Stepper, SuccessIcon, SvgIcon, Switch, TEAL_BLUE, TRANSPARENT_WHITE, Tab, Table, TableBody, TableCell, TableContainer, TableHead, TableRow, TableSortLabel, TableViewIcon, Tabs, TachographDigitalIcon, TachometerIcon, TallRoundedRectangleIcon, TeamsIcon, TerminalIcon, TextField, ToggleButton, ToggleButtonGroup, Toolbar, ToolkitIcon, Tooltip, type TooltipProps, TouchAppIcon, TriangleIcon, TrophyIcon as TropyIcon, TwitterIcon, Typography, VerificationClassIcon, ViewsIcon as ViewIcon, WHITE, WHITESMOKE, WarningIcon, WorkspaceIcon, XSTATE_DEBUG_EVENT, YELLOW_SEA, Zoom, accentGrey, actionIcon, anakiwa, black, blue, buttonDelete, buttonDisabled, carribean, casper, charcoal, colors, common, componentIcon, connected, createAndEditEnvironmentSchema, createAndEditEnvironmentUiSchema, createAndEditWorkspace as createAndEditWorkspaceSchema, createAndEditWorkspaceUiSchema, cultured, darkModePalette, darkSlateGray, darkTeal, dataValidatorCommands, dataValidatorEvents, dataValidatorMachine, deadLetter, eerieBlack, forwardToActors, fromWorkerfiedActor, getCollaborationConfig, getFormatDate, getFullFormattedTime, getRelativeTime, getWebSocketProtocol, grafanaCredentialUiSchema as grafanaCredentialSUiSchema, grafanaCredentialSchema, gray, green, helmConnectionSchema, helmConnectionUiSchema, helpAndSupportModalSchema, helpAndSupportModalUiSchema, importDesignSchema, importDesignUiSchema, importFilterSchema, importFilterUiSchema, importModelSchema, importModelUiSchema, initReduxPersist, jungleGreen, keppel, kubernetesCredentialSchema, kubernetesCredentialUiSchema, lightModePalette, notificationColors, patternsBlue, primaryColor, prometheusCredentialSchema, prometheusCredentialUiSchema, publishCatalogItemSchema, publishCatalogItemUiSchema, red, redDelete, reduxActor, reduxCommands, reduxEvents, reply, rtkQueryActor, rtkQueryActorCommands, rtkQueryActorEvents, saffron, selectIsValidating, selectValidationResults, sendToActor, sendToActors, slateGray, socialIcons, subscribeToRoom, tabMenu, tableBackgroundHover, typography, unSubscribeRoom, useRoomActivity, white, workerfyActor, yellow };
|
|
2710
|
+
export { ALABASTER_WHITE, ALICE_BLUE, ANAKIWA, Accordion, AccordionActions, AccordionDetails, AccordionSummary, AddIconCircleBordered as AddCircleIcon, AddIcon, Alert, AlertTitle, AppBar, ApplicationIcon, ArrowCompressIcon$1 as ArrowCompressIcon, ArrowCompressIcon as ArrowExpandIcon, Autocomplete, Avatar, AvatarGroup, BLACK, Backdrop, Badge, BasicMarkdown, BellIcon, Box, Breadcrumbs, BusIcon, Button, ButtonGroup, CARIBBEAN_GREEN, CASPER, CHARCOAL, CHINESE_SILVER, CONNECTED, CULTURED, CalenderIcon, Card, CardActions, CardContent, CardHeader, CardMedia, CaretDownIcon, CatalogIcon, ChainIcon, ChallengesIcon, CheckCircleIcon, Checkbox, ChevronLeft, Chip, CircleIcon, CircularProgress, ClickAwayListener, CloneIcon, CloseBtn, CloseIcon, CloudSavedIcon, Collapse, CollapsAllIcon as CollapseAllIcon, ColumnIcon, CommunityClassIcon, ComponentIcon, ConfigurationIcon, Container, ContentFilterIcon, CopyIcon, CopyLinkIcon, CreateNewIcon, CredentialIcon, CrossCircleIcon, CssBaseline, CustomTooltip, DARK_BLUE_GRAY, DARK_PRIMARY_COLOR, DARK_SHADE_GRAY, DARK_SLATE_GRAY, DARK_TEAL, DATA_VALIDATOR_COMMANDS, DATA_VALIDATOR_EVENTS, DELETED, DISCONNECTED, DISCOVERED, DashboardIcon, type DataType, DatabaseIcon, DeferEvents, DeleteIcon, DeploymentsIcon, DesignIcon, DesignerBottomRightIcon, DetailsIcon as DetailIcon, DetailsIcon, Dialog, DialogActions, DialogContent, DialogContentText, DialogTitle, Divider, DocumentIcon, DoneAllIcon, DoneIcon, DownloadIcon$1 as DownloadIcon, DragIcon, Drawer, DropDownIcon, EERIE_BLACK, EditIcon, EmptyStyleIcon, EnvironmentIcon, ErrorIcon, EventBus, type EventBusEvent, type EventType, ExpandAllIcon, DownloadIcon as ExportIcon, ExternalLinkIcon, Fab, FacebookIcon, Fade, FavoriteIcon, FeedbackIcon, FileIcon, FilterIcon, FormControl, FormControlLabel, FormGroup, FormLabel, FormattedTime, FullScreenIcon, FullScreenExitIcon as FullScreenIconExit, GRAY, GRAY97, GREEN, GetStartedIcon, GithubIcon, GoogleIcon, Grid, Grid2, GridViewIcon, Grow, HelpOutlinedIcon, HelperTextPopover, Hidden, IGNORED, IconButton, IdeaIcon, InfoCircleIcon, InfoIcon, InfoOutlinedIcon as InfoOutlined, InfoTooltip, Input, InputAdornment, InputBase, InputLabel, InsertChartIcon, InviteUserIcon, KEPPEL, KanvasIcon, KeppelApplicationIcon, KeppelRectangleIcon, KeppelTallRoundedRectangleIcon, KubernetesIcon, LIGHT_GRAY, LIGHT_TEAL, LIMED_SPRUCE, LeaderboardIcon as LeaderBoardIcon, LearningIcon, LeftAngledArrowIcon, LeftArrowIcon, LinearProgress, Link, LinkedinIcon, List, ListItem, ListItemAvatar, ListItemButton, ListItemIcon, ListItemSecondaryAction, ListItemText, ListSubheader, LockIcon, LogoutIcon, MAINTAINENCE, MIDNIGHT_BLACK, MendeleyIcon, Menu, MenuIcon, MenuItem, MenuList, MesheryFilterIcon, MesheryOperator, Modal, ModalBody, ModalButtonDanger, ModalButtonPrimary, ModalButtonSecondary, ModalButtonTertiary, ModalFooter, ModalStyledHeader, MoveFileIcon, NOT_FOUND, NativeSelect, NoSsr, ONYX_BLACK, OfficialClassIcon, OpenFileIcon, OpenIcon, OpenInNewIcon, OrgIcon, OutlinedApplicationIcon, OutlinedCircleIcon, OutlinedCloudSavingIcon, OutlinedDataObjectIcon, OutlinedDeployIcon, OutlinedDoubleChevronIcon, OutlinedHierarchicalIcon, OutlinedInput, OutlinedMeshIcon, OutlinedPatternIcon, OutlinedPatternSwitchIcon, OutlinedPodIcon, OutlinedRectangleIcon, OutlinedRedoIcon, OutlinedResetIcon, OutlinedRingIcon, OutlinedScreenshotIcon, OutlinedSettingsIcon, OutlinedStarIcon, OutlinedTallRoundedRectangleIcon, OutlinedUndeployIcon, OutlinedUndoIcon, OutlinedValidateIcon, OutlinedVisibilityOffIcon, OutlinedVisibilityOnIcon, OutlinedVisualizerSwitcherIcon, PATTERNS_BLUE, PRIMARY_COLOR, Pagination, PanToolIcon, Paper, PersistedStateProvider, PersonIcon, PollIcon, Popover, Popper, PrimaryActionButtons, type PrimitivePalette, PublicIcon, PublishIcon, QuestionIcon, REDUX_COMMANDS, REDUX_EVENTS, REEE, REGISTERED, type REXUX_ACTOR_EVENTS, RTK_EVENTS, Radio, RadioGroup, ReadIcon, RectangleIcon, type RehydrateStateAction, RemoveDoneIcon, RemoveIcon, RenderMarkdown, type RenderMarkdownProps, RenderMarkdownTooltip, RightArrowIcon, RoundedRectangleShapeIcon, RoundTriangleShapeIcon as RoundedTriangleShapeIcon, SAFFRON, SILVER_GRAY, SLATE_BLUE, SMPIcon, SaveAsIcon, SearchIcon, Select, ShareIcon, ShareLineIcon, SistentDefaultPrimitivePaletteDark, SistentDefaultPrimitivePaletteLight, SistentThemeProvider, SistentThemeProviderWithoutBaseLine, Skeleton, Slide, Slider, Snackbar, SpeedDial, SpeedDialAction, Stack, Step, StepButton, StepConnector, StepContent, StepIcon, StepLabel, Stepper, SuccessIcon, SvgIcon, Switch, TEAL_BLUE, TRANSPARENT_WHITE, Tab, Table, TableBody, TableCell, TableContainer, TableHead, TableRow, TableSortLabel, TableViewIcon, Tabs, TachographDigitalIcon, TachometerIcon, TallRoundedRectangleIcon, TeamsIcon, TerminalIcon, TextField, ToggleButton, ToggleButtonGroup, Toolbar, ToolkitIcon, Tooltip, type TooltipProps, TouchAppIcon, TriangleIcon, TrophyIcon as TropyIcon, TwitterIcon, Typography, VerificationClassIcon, ViewsIcon as ViewIcon, WHITE, WHITESMOKE, WarningIcon, WorkspaceIcon, XSTATE_DEBUG_EVENT, YELLOW_SEA, Zoom, accentGrey, actionIcon, anakiwa, black, blue, buttonDelete, buttonDisabled, carribean, casper, charcoal, colors, common, componentIcon, connected, createAndEditEnvironmentSchema, createAndEditEnvironmentUiSchema, createAndEditWorkspace as createAndEditWorkspaceSchema, createAndEditWorkspaceUiSchema, cultured, darkModePalette, darkSlateGray, darkTeal, dataValidatorCommands, dataValidatorEvents, dataValidatorMachine, deadLetter, eerieBlack, forwardToActors, fromWorkerfiedActor, getCollaborationConfig, getFormatDate, getFullFormattedTime, getRelativeTime, getWebSocketProtocol, grafanaCredentialUiSchema as grafanaCredentialSUiSchema, grafanaCredentialSchema, gray, green, helmConnectionSchema, helmConnectionUiSchema, helpAndSupportModalSchema, helpAndSupportModalUiSchema, importDesignSchema, importDesignUiSchema, importFilterSchema, importFilterUiSchema, importModelSchema, importModelUiSchema, initReduxPersist, jungleGreen, keppel, kubernetesCredentialSchema, kubernetesCredentialUiSchema, lightModePalette, notificationColors, patternsBlue, primaryColor, prometheusCredentialSchema, prometheusCredentialUiSchema, publishCatalogItemSchema, publishCatalogItemUiSchema, red, redDelete, reduxActor, reduxCommands, reduxEvents, reply, rtkQueryActor, rtkQueryActorCommands, rtkQueryActorEvents, saffron, selectIsValidating, selectValidationResults, sendToActor, sendToActors, slateGray, socialIcons, subscribeToRoom, tabMenu, tableBackgroundHover, typography, unSubscribeRoom, useModal, useRoomActivity, white, workerfyActor, yellow };
|
package/dist/index.d.ts
CHANGED
|
@@ -5,6 +5,8 @@ import React$1, { MutableRefObject, FC, SVGProps, CSSProperties, ReactNode } fro
|
|
|
5
5
|
export { outlinedInputClasses } from '@mui/material/OutlinedInput';
|
|
6
6
|
export { tooltipClasses } from '@mui/material/Tooltip';
|
|
7
7
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
8
|
+
import * as _emotion_styled from '@emotion/styled';
|
|
9
|
+
import * as _mui_system from '@mui/system';
|
|
8
10
|
import { Store as Store$1, Dispatch } from 'redux';
|
|
9
11
|
import { TypographyOptions } from '@mui/material/styles/createTypography';
|
|
10
12
|
import { EmotionCache } from '@emotion/react';
|
|
@@ -876,6 +878,51 @@ declare const RenderMarkdown: React.FC<RenderMarkdownProps>;
|
|
|
876
878
|
declare const RenderMarkdownTooltip: React.FC<RenderMarkdownProps>;
|
|
877
879
|
declare const BasicMarkdown: React.FC<RenderMarkdownProps>;
|
|
878
880
|
|
|
881
|
+
interface ModalProps extends DialogProps {
|
|
882
|
+
closeModal: () => void;
|
|
883
|
+
title: string;
|
|
884
|
+
headerIcon?: React$1.ReactNode;
|
|
885
|
+
reactNode?: React$1.ReactNode;
|
|
886
|
+
isFullScreenModeAllowed?: boolean;
|
|
887
|
+
}
|
|
888
|
+
interface ModalFooterProps {
|
|
889
|
+
children: React$1.ReactNode;
|
|
890
|
+
variant?: 'filled' | 'transparent';
|
|
891
|
+
helpText?: string;
|
|
892
|
+
hasHelpText?: boolean;
|
|
893
|
+
}
|
|
894
|
+
type openModalCallback = (props: {
|
|
895
|
+
title: string;
|
|
896
|
+
reactNode?: React$1.ReactNode;
|
|
897
|
+
onClose?: () => void;
|
|
898
|
+
}) => void;
|
|
899
|
+
interface UseModalReturnI extends ModalProps {
|
|
900
|
+
openModal: openModalCallback;
|
|
901
|
+
isOpen: boolean;
|
|
902
|
+
}
|
|
903
|
+
declare const CloseBtn: _emotion_styled.StyledComponent<Omit<IconButtonProps, "ref"> & React$1.RefAttributes<HTMLButtonElement> & _mui_system.MUIStyledCommonProps<_mui_material.Theme>, {}, {}>;
|
|
904
|
+
declare const ModalStyledHeader: _emotion_styled.StyledComponent<_mui_system.MUIStyledCommonProps<_mui_material.Theme>, React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
905
|
+
declare const useModal: ({ headerIcon }: {
|
|
906
|
+
headerIcon: React$1.ReactNode;
|
|
907
|
+
}) => UseModalReturnI;
|
|
908
|
+
declare const ModalBody: _emotion_styled.StyledComponent<Omit<_mui_material.PaperProps, "ref"> & React$1.RefAttributes<HTMLDivElement> & _mui_system.MUIStyledCommonProps<_mui_material.Theme>, {}, {}>;
|
|
909
|
+
declare const Modal: React$1.FC<ModalProps>;
|
|
910
|
+
declare const ModalFooter: React$1.FC<ModalFooterProps>;
|
|
911
|
+
interface ModalButtonPrimaryProps extends ButtonProps$1 {
|
|
912
|
+
isOpen?: boolean;
|
|
913
|
+
}
|
|
914
|
+
declare const ModalButtonPrimary: _emotion_styled.StyledComponent<ButtonProps & _mui_system.MUIStyledCommonProps<_mui_material.Theme> & ModalButtonPrimaryProps, {}, {}>;
|
|
915
|
+
declare const ModalButtonSecondary: _emotion_styled.StyledComponent<ButtonProps & _mui_system.MUIStyledCommonProps<_mui_material.Theme>, {}, {}>;
|
|
916
|
+
declare const ModalButtonTertiary: _emotion_styled.StyledComponent<ButtonProps & _mui_system.MUIStyledCommonProps<_mui_material.Theme>, {}, {}>;
|
|
917
|
+
declare const ModalButtonDanger: _emotion_styled.StyledComponent<ButtonProps & _mui_system.MUIStyledCommonProps<_mui_material.Theme>, {}, {}>;
|
|
918
|
+
interface PrimaryActionButtonsProps {
|
|
919
|
+
primaryText: string;
|
|
920
|
+
secondaryText: string;
|
|
921
|
+
primaryButtonProps?: React$1.ComponentProps<typeof ModalButtonPrimary>;
|
|
922
|
+
secondaryButtonProps?: React$1.ComponentProps<typeof ModalButtonSecondary>;
|
|
923
|
+
}
|
|
924
|
+
declare const PrimaryActionButtons: React$1.FC<PrimaryActionButtonsProps>;
|
|
925
|
+
|
|
879
926
|
interface ICEServer {
|
|
880
927
|
urls: string;
|
|
881
928
|
username?: string;
|
|
@@ -2354,6 +2401,11 @@ type PrimitivePalette = {
|
|
|
2354
2401
|
*/
|
|
2355
2402
|
foreground: string;
|
|
2356
2403
|
};
|
|
2404
|
+
/**
|
|
2405
|
+
* Layer5 ( primitives ) defines the raw, brand-level colors used in the UI.
|
|
2406
|
+
*/
|
|
2407
|
+
declare const SistentDefaultPrimitivePaletteLight: PrimitivePalette;
|
|
2408
|
+
declare const SistentDefaultPrimitivePaletteDark: PrimitivePalette;
|
|
2357
2409
|
|
|
2358
2410
|
/**
|
|
2359
2411
|
* Define the base common colors to derive from
|
|
@@ -2655,4 +2707,4 @@ declare const FormattedTime: ({ date }: {
|
|
|
2655
2707
|
date: string;
|
|
2656
2708
|
}) => react_jsx_runtime.JSX.Element;
|
|
2657
2709
|
|
|
2658
|
-
export { ALABASTER_WHITE, ALICE_BLUE, ANAKIWA, Accordion, AccordionActions, AccordionDetails, AccordionSummary, AddIconCircleBordered as AddCircleIcon, AddIcon, Alert, AlertTitle, AppBar, ApplicationIcon, ArrowCompressIcon$1 as ArrowCompressIcon, ArrowCompressIcon as ArrowExpandIcon, Autocomplete, Avatar, AvatarGroup, BLACK, Backdrop, Badge, BasicMarkdown, BellIcon, Box, Breadcrumbs, BusIcon, Button, ButtonGroup, CARIBBEAN_GREEN, CASPER, CHARCOAL, CHINESE_SILVER, CONNECTED, CULTURED, CalenderIcon, Card, CardActions, CardContent, CardHeader, CardMedia, CaretDownIcon, CatalogIcon, ChainIcon, ChallengesIcon, CheckCircleIcon, Checkbox, ChevronLeft, Chip, CircleIcon, CircularProgress, ClickAwayListener, CloneIcon, CloseIcon, CloudSavedIcon, Collapse, CollapsAllIcon as CollapseAllIcon, ColumnIcon, CommunityClassIcon, ComponentIcon, ConfigurationIcon, Container, ContentFilterIcon, CopyIcon, CopyLinkIcon, CreateNewIcon, CredentialIcon, CrossCircleIcon, CssBaseline, CustomTooltip, DARK_BLUE_GRAY, DARK_PRIMARY_COLOR, DARK_SHADE_GRAY, DARK_SLATE_GRAY, DARK_TEAL, DATA_VALIDATOR_COMMANDS, DATA_VALIDATOR_EVENTS, DELETED, DISCONNECTED, DISCOVERED, DashboardIcon, type DataType, DatabaseIcon, DeferEvents, DeleteIcon, DeploymentsIcon, DesignIcon, DesignerBottomRightIcon, DetailsIcon as DetailIcon, DetailsIcon, Dialog, DialogActions, DialogContent, DialogContentText, DialogTitle, Divider, DocumentIcon, DoneAllIcon, DoneIcon, DownloadIcon$1 as DownloadIcon, DragIcon, Drawer, DropDownIcon, EERIE_BLACK, EditIcon, EmptyStyleIcon, EnvironmentIcon, ErrorIcon, EventBus, type EventBusEvent, type EventType, ExpandAllIcon, DownloadIcon as ExportIcon, ExternalLinkIcon, Fab, FacebookIcon, Fade, FavoriteIcon, FeedbackIcon, FileIcon, FilterIcon, FormControl, FormControlLabel, FormGroup, FormLabel, FormattedTime, FullScreenIcon, FullScreenExitIcon as FullScreenIconExit, GRAY, GRAY97, GREEN, GetStartedIcon, GithubIcon, GoogleIcon, Grid, Grid2, GridViewIcon, Grow, HelpOutlinedIcon, HelperTextPopover, Hidden, IGNORED, IconButton, IdeaIcon, InfoCircleIcon, InfoIcon, InfoOutlinedIcon as InfoOutlined, InfoTooltip, Input, InputAdornment, InputBase, InputLabel, InsertChartIcon, InviteUserIcon, KEPPEL, KanvasIcon, KeppelApplicationIcon, KeppelRectangleIcon, KeppelTallRoundedRectangleIcon, KubernetesIcon, LIGHT_GRAY, LIGHT_TEAL, LIMED_SPRUCE, LeaderboardIcon as LeaderBoardIcon, LearningIcon, LeftAngledArrowIcon, LeftArrowIcon, LinearProgress, Link, LinkedinIcon, List, ListItem, ListItemAvatar, ListItemButton, ListItemIcon, ListItemSecondaryAction, ListItemText, ListSubheader, LockIcon, LogoutIcon, MAINTAINENCE, MIDNIGHT_BLACK, MendeleyIcon, Menu, MenuIcon, MenuItem, MenuList, MesheryFilterIcon, MesheryOperator, MoveFileIcon, NOT_FOUND, NativeSelect, NoSsr, ONYX_BLACK, OfficialClassIcon, OpenFileIcon, OpenIcon, OpenInNewIcon, OrgIcon, OutlinedApplicationIcon, OutlinedCircleIcon, OutlinedCloudSavingIcon, OutlinedDataObjectIcon, OutlinedDeployIcon, OutlinedDoubleChevronIcon, OutlinedHierarchicalIcon, OutlinedInput, OutlinedMeshIcon, OutlinedPatternIcon, OutlinedPatternSwitchIcon, OutlinedPodIcon, OutlinedRectangleIcon, OutlinedRedoIcon, OutlinedResetIcon, OutlinedRingIcon, OutlinedScreenshotIcon, OutlinedSettingsIcon, OutlinedStarIcon, OutlinedTallRoundedRectangleIcon, OutlinedUndeployIcon, OutlinedUndoIcon, OutlinedValidateIcon, OutlinedVisibilityOffIcon, OutlinedVisibilityOnIcon, OutlinedVisualizerSwitcherIcon, PATTERNS_BLUE, PRIMARY_COLOR, Pagination, PanToolIcon, Paper, PersistedStateProvider, PersonIcon, PollIcon, Popover, Popper, type PrimitivePalette, PublicIcon, PublishIcon, QuestionIcon, REDUX_COMMANDS, REDUX_EVENTS, REEE, REGISTERED, type REXUX_ACTOR_EVENTS, RTK_EVENTS, Radio, RadioGroup, ReadIcon, RectangleIcon, type RehydrateStateAction, RemoveDoneIcon, RemoveIcon, RenderMarkdown, type RenderMarkdownProps, RenderMarkdownTooltip, RightArrowIcon, RoundedRectangleShapeIcon, RoundTriangleShapeIcon as RoundedTriangleShapeIcon, SAFFRON, SILVER_GRAY, SLATE_BLUE, SMPIcon, SaveAsIcon, SearchIcon, Select, ShareIcon, ShareLineIcon, SistentThemeProvider, SistentThemeProviderWithoutBaseLine, Skeleton, Slide, Slider, Snackbar, SpeedDial, SpeedDialAction, Stack, Step, StepButton, StepConnector, StepContent, StepIcon, StepLabel, Stepper, SuccessIcon, SvgIcon, Switch, TEAL_BLUE, TRANSPARENT_WHITE, Tab, Table, TableBody, TableCell, TableContainer, TableHead, TableRow, TableSortLabel, TableViewIcon, Tabs, TachographDigitalIcon, TachometerIcon, TallRoundedRectangleIcon, TeamsIcon, TerminalIcon, TextField, ToggleButton, ToggleButtonGroup, Toolbar, ToolkitIcon, Tooltip, type TooltipProps, TouchAppIcon, TriangleIcon, TrophyIcon as TropyIcon, TwitterIcon, Typography, VerificationClassIcon, ViewsIcon as ViewIcon, WHITE, WHITESMOKE, WarningIcon, WorkspaceIcon, XSTATE_DEBUG_EVENT, YELLOW_SEA, Zoom, accentGrey, actionIcon, anakiwa, black, blue, buttonDelete, buttonDisabled, carribean, casper, charcoal, colors, common, componentIcon, connected, createAndEditEnvironmentSchema, createAndEditEnvironmentUiSchema, createAndEditWorkspace as createAndEditWorkspaceSchema, createAndEditWorkspaceUiSchema, cultured, darkModePalette, darkSlateGray, darkTeal, dataValidatorCommands, dataValidatorEvents, dataValidatorMachine, deadLetter, eerieBlack, forwardToActors, fromWorkerfiedActor, getCollaborationConfig, getFormatDate, getFullFormattedTime, getRelativeTime, getWebSocketProtocol, grafanaCredentialUiSchema as grafanaCredentialSUiSchema, grafanaCredentialSchema, gray, green, helmConnectionSchema, helmConnectionUiSchema, helpAndSupportModalSchema, helpAndSupportModalUiSchema, importDesignSchema, importDesignUiSchema, importFilterSchema, importFilterUiSchema, importModelSchema, importModelUiSchema, initReduxPersist, jungleGreen, keppel, kubernetesCredentialSchema, kubernetesCredentialUiSchema, lightModePalette, notificationColors, patternsBlue, primaryColor, prometheusCredentialSchema, prometheusCredentialUiSchema, publishCatalogItemSchema, publishCatalogItemUiSchema, red, redDelete, reduxActor, reduxCommands, reduxEvents, reply, rtkQueryActor, rtkQueryActorCommands, rtkQueryActorEvents, saffron, selectIsValidating, selectValidationResults, sendToActor, sendToActors, slateGray, socialIcons, subscribeToRoom, tabMenu, tableBackgroundHover, typography, unSubscribeRoom, useRoomActivity, white, workerfyActor, yellow };
|
|
2710
|
+
export { ALABASTER_WHITE, ALICE_BLUE, ANAKIWA, Accordion, AccordionActions, AccordionDetails, AccordionSummary, AddIconCircleBordered as AddCircleIcon, AddIcon, Alert, AlertTitle, AppBar, ApplicationIcon, ArrowCompressIcon$1 as ArrowCompressIcon, ArrowCompressIcon as ArrowExpandIcon, Autocomplete, Avatar, AvatarGroup, BLACK, Backdrop, Badge, BasicMarkdown, BellIcon, Box, Breadcrumbs, BusIcon, Button, ButtonGroup, CARIBBEAN_GREEN, CASPER, CHARCOAL, CHINESE_SILVER, CONNECTED, CULTURED, CalenderIcon, Card, CardActions, CardContent, CardHeader, CardMedia, CaretDownIcon, CatalogIcon, ChainIcon, ChallengesIcon, CheckCircleIcon, Checkbox, ChevronLeft, Chip, CircleIcon, CircularProgress, ClickAwayListener, CloneIcon, CloseBtn, CloseIcon, CloudSavedIcon, Collapse, CollapsAllIcon as CollapseAllIcon, ColumnIcon, CommunityClassIcon, ComponentIcon, ConfigurationIcon, Container, ContentFilterIcon, CopyIcon, CopyLinkIcon, CreateNewIcon, CredentialIcon, CrossCircleIcon, CssBaseline, CustomTooltip, DARK_BLUE_GRAY, DARK_PRIMARY_COLOR, DARK_SHADE_GRAY, DARK_SLATE_GRAY, DARK_TEAL, DATA_VALIDATOR_COMMANDS, DATA_VALIDATOR_EVENTS, DELETED, DISCONNECTED, DISCOVERED, DashboardIcon, type DataType, DatabaseIcon, DeferEvents, DeleteIcon, DeploymentsIcon, DesignIcon, DesignerBottomRightIcon, DetailsIcon as DetailIcon, DetailsIcon, Dialog, DialogActions, DialogContent, DialogContentText, DialogTitle, Divider, DocumentIcon, DoneAllIcon, DoneIcon, DownloadIcon$1 as DownloadIcon, DragIcon, Drawer, DropDownIcon, EERIE_BLACK, EditIcon, EmptyStyleIcon, EnvironmentIcon, ErrorIcon, EventBus, type EventBusEvent, type EventType, ExpandAllIcon, DownloadIcon as ExportIcon, ExternalLinkIcon, Fab, FacebookIcon, Fade, FavoriteIcon, FeedbackIcon, FileIcon, FilterIcon, FormControl, FormControlLabel, FormGroup, FormLabel, FormattedTime, FullScreenIcon, FullScreenExitIcon as FullScreenIconExit, GRAY, GRAY97, GREEN, GetStartedIcon, GithubIcon, GoogleIcon, Grid, Grid2, GridViewIcon, Grow, HelpOutlinedIcon, HelperTextPopover, Hidden, IGNORED, IconButton, IdeaIcon, InfoCircleIcon, InfoIcon, InfoOutlinedIcon as InfoOutlined, InfoTooltip, Input, InputAdornment, InputBase, InputLabel, InsertChartIcon, InviteUserIcon, KEPPEL, KanvasIcon, KeppelApplicationIcon, KeppelRectangleIcon, KeppelTallRoundedRectangleIcon, KubernetesIcon, LIGHT_GRAY, LIGHT_TEAL, LIMED_SPRUCE, LeaderboardIcon as LeaderBoardIcon, LearningIcon, LeftAngledArrowIcon, LeftArrowIcon, LinearProgress, Link, LinkedinIcon, List, ListItem, ListItemAvatar, ListItemButton, ListItemIcon, ListItemSecondaryAction, ListItemText, ListSubheader, LockIcon, LogoutIcon, MAINTAINENCE, MIDNIGHT_BLACK, MendeleyIcon, Menu, MenuIcon, MenuItem, MenuList, MesheryFilterIcon, MesheryOperator, Modal, ModalBody, ModalButtonDanger, ModalButtonPrimary, ModalButtonSecondary, ModalButtonTertiary, ModalFooter, ModalStyledHeader, MoveFileIcon, NOT_FOUND, NativeSelect, NoSsr, ONYX_BLACK, OfficialClassIcon, OpenFileIcon, OpenIcon, OpenInNewIcon, OrgIcon, OutlinedApplicationIcon, OutlinedCircleIcon, OutlinedCloudSavingIcon, OutlinedDataObjectIcon, OutlinedDeployIcon, OutlinedDoubleChevronIcon, OutlinedHierarchicalIcon, OutlinedInput, OutlinedMeshIcon, OutlinedPatternIcon, OutlinedPatternSwitchIcon, OutlinedPodIcon, OutlinedRectangleIcon, OutlinedRedoIcon, OutlinedResetIcon, OutlinedRingIcon, OutlinedScreenshotIcon, OutlinedSettingsIcon, OutlinedStarIcon, OutlinedTallRoundedRectangleIcon, OutlinedUndeployIcon, OutlinedUndoIcon, OutlinedValidateIcon, OutlinedVisibilityOffIcon, OutlinedVisibilityOnIcon, OutlinedVisualizerSwitcherIcon, PATTERNS_BLUE, PRIMARY_COLOR, Pagination, PanToolIcon, Paper, PersistedStateProvider, PersonIcon, PollIcon, Popover, Popper, PrimaryActionButtons, type PrimitivePalette, PublicIcon, PublishIcon, QuestionIcon, REDUX_COMMANDS, REDUX_EVENTS, REEE, REGISTERED, type REXUX_ACTOR_EVENTS, RTK_EVENTS, Radio, RadioGroup, ReadIcon, RectangleIcon, type RehydrateStateAction, RemoveDoneIcon, RemoveIcon, RenderMarkdown, type RenderMarkdownProps, RenderMarkdownTooltip, RightArrowIcon, RoundedRectangleShapeIcon, RoundTriangleShapeIcon as RoundedTriangleShapeIcon, SAFFRON, SILVER_GRAY, SLATE_BLUE, SMPIcon, SaveAsIcon, SearchIcon, Select, ShareIcon, ShareLineIcon, SistentDefaultPrimitivePaletteDark, SistentDefaultPrimitivePaletteLight, SistentThemeProvider, SistentThemeProviderWithoutBaseLine, Skeleton, Slide, Slider, Snackbar, SpeedDial, SpeedDialAction, Stack, Step, StepButton, StepConnector, StepContent, StepIcon, StepLabel, Stepper, SuccessIcon, SvgIcon, Switch, TEAL_BLUE, TRANSPARENT_WHITE, Tab, Table, TableBody, TableCell, TableContainer, TableHead, TableRow, TableSortLabel, TableViewIcon, Tabs, TachographDigitalIcon, TachometerIcon, TallRoundedRectangleIcon, TeamsIcon, TerminalIcon, TextField, ToggleButton, ToggleButtonGroup, Toolbar, ToolkitIcon, Tooltip, type TooltipProps, TouchAppIcon, TriangleIcon, TrophyIcon as TropyIcon, TwitterIcon, Typography, VerificationClassIcon, ViewsIcon as ViewIcon, WHITE, WHITESMOKE, WarningIcon, WorkspaceIcon, XSTATE_DEBUG_EVENT, YELLOW_SEA, Zoom, accentGrey, actionIcon, anakiwa, black, blue, buttonDelete, buttonDisabled, carribean, casper, charcoal, colors, common, componentIcon, connected, createAndEditEnvironmentSchema, createAndEditEnvironmentUiSchema, createAndEditWorkspace as createAndEditWorkspaceSchema, createAndEditWorkspaceUiSchema, cultured, darkModePalette, darkSlateGray, darkTeal, dataValidatorCommands, dataValidatorEvents, dataValidatorMachine, deadLetter, eerieBlack, forwardToActors, fromWorkerfiedActor, getCollaborationConfig, getFormatDate, getFullFormattedTime, getRelativeTime, getWebSocketProtocol, grafanaCredentialUiSchema as grafanaCredentialSUiSchema, grafanaCredentialSchema, gray, green, helmConnectionSchema, helmConnectionUiSchema, helpAndSupportModalSchema, helpAndSupportModalUiSchema, importDesignSchema, importDesignUiSchema, importFilterSchema, importFilterUiSchema, importModelSchema, importModelUiSchema, initReduxPersist, jungleGreen, keppel, kubernetesCredentialSchema, kubernetesCredentialUiSchema, lightModePalette, notificationColors, patternsBlue, primaryColor, prometheusCredentialSchema, prometheusCredentialUiSchema, publishCatalogItemSchema, publishCatalogItemUiSchema, red, redDelete, reduxActor, reduxCommands, reduxEvents, reply, rtkQueryActor, rtkQueryActorCommands, rtkQueryActorEvents, saffron, selectIsValidating, selectValidationResults, sendToActor, sendToActors, slateGray, socialIcons, subscribeToRoom, tabMenu, tableBackgroundHover, typography, unSubscribeRoom, useModal, useRoomActivity, white, workerfyActor, yellow };
|