@odigos/ui-kit 0.0.59 → 0.0.60
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/CHANGELOG.md +7 -0
- package/lib/components/drawer/drawer-header/index.d.ts +2 -1
- package/lib/components/index.d.ts +1 -0
- package/lib/components/tab-list/index.d.ts +17 -0
- package/lib/components.js +3 -3
- package/lib/containers.js +2 -2
- package/lib/{index-bb79aa09.js → index-1a165096.js} +1 -1
- package/lib/{index-e6385bb5.js → index-eb5688cd.js} +71 -62
- package/lib/snippets.js +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.60](https://github.com/odigos-io/ui-kit/compare/ui-kit-v0.0.59...ui-kit-v0.0.60) (2025-07-16)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* add tab-list component ([#247](https://github.com/odigos-io/ui-kit/issues/247)) ([e363e5c](https://github.com/odigos-io/ui-kit/commit/e363e5cdfcbefc432ed9f04a19d3c1acf933bcaa))
|
|
9
|
+
|
|
3
10
|
## [0.0.59](https://github.com/odigos-io/ui-kit/compare/ui-kit-v0.0.58...ui-kit-v0.0.59) (2025-07-16)
|
|
4
11
|
|
|
5
12
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { type FC, type ReactNode } from 'react';
|
|
2
2
|
import type { SVG } from '@/types';
|
|
3
|
-
import { type ButtonProps } from '
|
|
3
|
+
import { type ButtonProps } from '@/components/button';
|
|
4
4
|
interface DrawerHeaderProps {
|
|
5
5
|
onClose: () => void;
|
|
6
6
|
icons?: SVG[];
|
|
@@ -8,6 +8,7 @@ interface DrawerHeaderProps {
|
|
|
8
8
|
title?: string;
|
|
9
9
|
titleTooltip?: string;
|
|
10
10
|
replaceTitleWith?: ReactNode | (() => ReactNode);
|
|
11
|
+
actions?: ReactNode;
|
|
11
12
|
actionButtons?: (ButtonProps & {
|
|
12
13
|
'data-id': string;
|
|
13
14
|
})[];
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import React, { type FC } from 'react';
|
|
2
|
+
import type { SVG } from '@/types';
|
|
3
|
+
interface Tab {
|
|
4
|
+
label: string;
|
|
5
|
+
icon?: SVG;
|
|
6
|
+
onClick: () => void;
|
|
7
|
+
selected?: boolean;
|
|
8
|
+
}
|
|
9
|
+
interface TabListProps {
|
|
10
|
+
tabs?: Tab[];
|
|
11
|
+
hideBorder?: boolean;
|
|
12
|
+
}
|
|
13
|
+
declare const Tab: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("..").TextProps, {
|
|
14
|
+
$selected?: boolean;
|
|
15
|
+
}>> & string & Omit<React.FC<import("..").TextProps>, keyof React.Component<any, {}, any>>;
|
|
16
|
+
declare const TabList: FC<TabListProps>;
|
|
17
|
+
export { TabList, type TabListProps, type Tab };
|
package/lib/components.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { B as Button } from './index-
|
|
2
|
-
export { A as AutocompleteInput, a as Badge,
|
|
3
|
-
export { C as CancelWarning, D as DeleteWarning } from './index-
|
|
1
|
+
import { B as Button } from './index-eb5688cd.js';
|
|
2
|
+
export { A as AutocompleteInput, a as Badge, a6 as CenterThis, C as Checkbox, b as Code, c as ConditionDetails, D as DataCard, e as DataCardFieldTypes, d as DataCardFields, f as DataFinger, g as DataTab, h as DescribeRow, i as Divider, j as DocsButton, k as Drawer, m as DrawerFooter, l as DrawerHeader, n as Dropdown, E as ExtendArrow, F as FadeLoader, o as FieldError, p as FieldLabel, a5 as FlexColumn, a4 as FlexRow, H as Header, I as IconButton, q as IconGroup, r as IconTitleBadge, s as IconWrapped, t as IconsNav, u as ImageControlled, v as Input, w as InputList, x as InputTable, y as InteractiveTable, K as KeyValueInputsList, M as Modal, a9 as ModalBody, z as MonitorsCheckboxes, G as MonitorsIcons, N as NavigationButtons, J as NoDataFound, L as NotificationNote, a8 as Overlay, P as Popup, O as PopupForm, S as ScrollX, Q as SectionTitle, R as Segment, U as SelectionButton, V as SkeletonLoader, W as Status, X as Stepper, Y as TabList, aa as TableContainer, ab as TableTitleWrap, ac as TableWrap, Z as Tag, _ as Text, $ as TextArea, a0 as Toggle, T as ToggleCodeComponent, a1 as Tooltip, a2 as TraceLoader, a7 as VerticalScroll, a3 as WarningModal } from './index-eb5688cd.js';
|
|
3
|
+
export { C as CancelWarning, D as DeleteWarning } from './index-1a165096.js';
|
|
4
4
|
import React, { createContext, Component, createElement } from 'react';
|
|
5
5
|
import { T as Theme } from './index-e9b26c29.js';
|
|
6
6
|
import './types.js';
|
package/lib/containers.js
CHANGED
|
@@ -2,14 +2,14 @@ import React, { useState, useEffect, forwardRef, useRef, useImperativeHandle, us
|
|
|
2
2
|
import styled, { css } from 'styled-components';
|
|
3
3
|
import { b as DISPLAY_TITLES, T as Theme, U as usePendingStore, V as useNotificationStore, O as useDrawerStore, B as BUTTON_TEXTS, W as useEntityStore, A as ACTION_OPTIONS, g as getActionIcon, z as useModalStore, F as FORM_ALERTS, X as useFilterStore, D as DISPLAY_LANGUAGES, M as MONITORS_OPTIONS, d as getInstrumentationRuleIcon, Y as useDataStreamStore, Z as useInstrumentStore, c as getEntityId, S as STORAGE_KEYS, a as DEFAULT_DATA_STREAM_NAME, _ as useSetupStore, e as getProgrammingLanguageIcon, I as INSTRUMENTATION_RULE_OPTIONS, $ as useSelectedStore, j as ImageErrorIcon, a0 as useDarkMode } from './index-e9b26c29.js';
|
|
4
4
|
import { ActionType, ActionKeyTypes, InputTypes, FieldTypes, EntityTypes, StatusType, Crud, OtherStatus, NodeTypes, EdgeTypes, AddNodeTypes, SignalType, HeadersCollectionKeyTypes, CustomInstrumentationsKeyTypes, CodeAttributesKeyTypes, PayloadCollectionKeyTypes, InstrumentationRuleType, K8sResourceKind } from './types.js';
|
|
5
|
-
import { e as DataCardFieldTypes, p as FieldLabel, C as Checkbox, o as FieldError, v as Input, x as InputTable, K as KeyValueInputsList, w as InputList,
|
|
5
|
+
import { e as DataCardFieldTypes, p as FieldLabel, C as Checkbox, o as FieldError, v as Input, x as InputTable, K as KeyValueInputsList, w as InputList, _ as Text, R as Segment, Q as SectionTitle, j as DocsButton, z as MonitorsCheckboxes, $ as TextArea, k as Drawer, c as ConditionDetails, D as DataCard, a5 as FlexColumn, M as Modal, N as NavigationButtons, a9 as ModalBody, L as NotificationNote, A as AutocompleteInput, i as Divider, W as Status, a4 as FlexRow, a1 as Tooltip, s as IconWrapped, G as MonitorsIcons, aa as TableContainer, ab as TableTitleWrap, r as IconTitleBadge, ac as TableWrap, y as InteractiveTable, a6 as CenterThis, J as NoDataFound, a2 as TraceLoader, a as Badge, E as ExtendArrow, a7 as VerticalScroll, U as SelectionButton, B as Button, n as Dropdown, ad as nodeConfig, ae as useNodesState, af as useEdgesState, ag as Flow, ah as applyNodeChanges, P as Popup, a0 as Toggle, I as IconButton, ai as AddButton, F as FadeLoader, g as DataTab, X as Stepper, d as DataCardFields, Z as Tag, aj as MarkerType, t as IconsNav, ak as CopyText, h as DescribeRow, al as PodContainer, am as SourceContainer, q as IconGroup, O as PopupForm } from './index-eb5688cd.js';
|
|
6
6
|
import { i as isEmpty, s as safeJsonParse } from './index-ec555530.js';
|
|
7
7
|
import { C as CheckCircledIcon, O as OdigosLogo } from './index-630dec93.js';
|
|
8
8
|
import { C as CrossCircledIcon, O as OdigosLogoText, a as OverviewIcon, F as FilterIcon, D as DataStreamsIcon, R as RetryIcon, N as NotificationIcon, U as UserIcon, S as SlackLogo, K as KeyIcon, T as TerminalIcon } from './index-3de83c73.js';
|
|
9
9
|
import { useActionFormData, useSessionStorage, useDataStreamFormData, useDestinationFormData, useClickNotification, useSourceFormData, useSourceSelectionFormData } from './hooks.js';
|
|
10
10
|
import { u as useKeyDown, a as useOnClickOutside, b as useContainerSize, c as useClickNode, d as usePopup, e as useInstrumentationRuleFormData, f as useTransition, g as useTimeAgo, h as useCopy, i as useGenericForm } from './useTransition-242df96b.js';
|
|
11
11
|
import { E as EditIcon, T as TrashIcon, S as SearchIcon, h as CheckIcon, A as ArrowIcon, P as PlusIcon, a as CopyIcon } from './index-0001f711.js';
|
|
12
|
-
import { D as DeleteWarning, C as CancelWarning } from './index-
|
|
12
|
+
import { D as DeleteWarning, C as CancelWarning } from './index-1a165096.js';
|
|
13
13
|
import { g as getConditionsBooleans, m as mapConditions, b as getStatusIcon, h as splitCamelString, c as capitalizeFirstLetter, i as isStringABoolean, p as parseBooleanFromString } from './index-355d023b.js';
|
|
14
14
|
import { f as filterActions, m as getEntityLabel, l as getEntityIcon, w as sleep, o as getPlatformIcon, p as getPlatformLabel, h as formatBytes, j as getContainersIcons, q as getValueForRange, k as getDestinationIcon, g as filterSourcesByStream, e as filterSources, b as filterDestinationsByStream, a as filterDestinations, v as mapDestinationFieldsForDisplay, c as compareCondition, s as getYamlFieldsForDestination, d as deepClone, n as getMetricForEntity, r as getWorkloadId, t as hasUnhealthyInstances, i as getContainersInstrumentedCount, u as isOverTime } from './index-f2c2de35.js';
|
|
15
15
|
import { m as mapExportedSignals } from './index-6a6bea6e.js';
|
|
@@ -240,7 +240,7 @@ const Badge = ({ label, filled, status, withIcon, onClick }) => {
|
|
|
240
240
|
label));
|
|
241
241
|
};
|
|
242
242
|
|
|
243
|
-
const Container$
|
|
243
|
+
const Container$H = styled.div `
|
|
244
244
|
height: fit-content;
|
|
245
245
|
border: 2px solid transparent;
|
|
246
246
|
padding: 2px;
|
|
@@ -340,7 +340,7 @@ const StyledButton$3 = styled.button `
|
|
|
340
340
|
`;
|
|
341
341
|
const Button$4 = ({ children, variant = 'primary', onClick, ...props }) => {
|
|
342
342
|
const ref = useRef(null);
|
|
343
|
-
return (React.createElement(Container$
|
|
343
|
+
return (React.createElement(Container$H, { "$variant": variant },
|
|
344
344
|
React.createElement(StyledButton$3, { ref: ref, "$variant": variant, onClick: (e) => {
|
|
345
345
|
if (onClick)
|
|
346
346
|
onClick(e);
|
|
@@ -348,7 +348,7 @@ const Button$4 = ({ children, variant = 'primary', onClick, ...props }) => {
|
|
|
348
348
|
}, ...props }, children)));
|
|
349
349
|
};
|
|
350
350
|
|
|
351
|
-
const Container$
|
|
351
|
+
const Container$G = styled.div `
|
|
352
352
|
position: absolute;
|
|
353
353
|
${({ $top }) => $top !== undefined && `top: ${$top}px;`}
|
|
354
354
|
${({ $bottom }) => $bottom !== undefined && `bottom: ${$bottom}px;`}
|
|
@@ -378,7 +378,7 @@ const Footer$1 = styled.div `
|
|
|
378
378
|
const Popup = forwardRef(({ isOpen, asPortal, ...props }, ref) => {
|
|
379
379
|
const Element = useMemo(() => {
|
|
380
380
|
const { children, top, bottom, left, right, borderRadius, padding, maxWidth, width, header, footer } = props;
|
|
381
|
-
return (React.createElement(Container$
|
|
381
|
+
return (React.createElement(Container$G, { ref: ref, "$top": top, "$bottom": bottom, "$left": left, "$right": right, "$borderRadius": borderRadius, "$padding": padding, "$maxWidth": maxWidth, "$width": width, "$asPortal": asPortal },
|
|
382
382
|
header && React.createElement(Header$3, { "$padding": padding }, header),
|
|
383
383
|
React.createElement(Body$1, { "$padding": padding }, children),
|
|
384
384
|
footer && React.createElement(Footer$1, { "$padding": padding }, footer)));
|
|
@@ -490,7 +490,7 @@ const Tooltip = ({ withIcon, titleIcon: TitleIcon, title, text, timestamp, child
|
|
|
490
490
|
!!timestamp && (React.createElement(Text, { size: 10, color: theme.text.darker_grey, family: 'secondary', style: { marginTop: '8px' } }, new Date(timestamp).toLocaleString()))))));
|
|
491
491
|
};
|
|
492
492
|
|
|
493
|
-
const Container$
|
|
493
|
+
const Container$F = styled.div `
|
|
494
494
|
display: flex;
|
|
495
495
|
align-items: center;
|
|
496
496
|
gap: 8px;
|
|
@@ -527,7 +527,7 @@ const Checkbox = ({ title, titleColor, tooltip, value = false, partiallyChecked
|
|
|
527
527
|
setIsChecked((prev) => (partiallyChecked ? true : !prev));
|
|
528
528
|
};
|
|
529
529
|
return (React.createElement(FlexColumn, null,
|
|
530
|
-
React.createElement(Container$
|
|
530
|
+
React.createElement(Container$F, { "data-id": `checkbox${!!title ? `-${title}` : ''}`, "$disabled": disabled, onClick: handleToggle, style: style },
|
|
531
531
|
React.createElement(CheckboxWrapper, { "$isChecked": isChecked, "$isPartiallyChecked": partiallyChecked, "$disabled": disabled }, partiallyChecked ? React.createElement(MinusIcon$1, { fill: theme.text.white }) : isChecked ? React.createElement(CheckIcon, { fill: theme.text.white }) : null),
|
|
532
532
|
title && (React.createElement(Tooltip, { text: tooltip, withIcon: true },
|
|
533
533
|
React.createElement(Text, { size: 12, color: titleColor || theme.text.grey, style: { maxWidth: '90%' } }, title)))),
|
|
@@ -3663,7 +3663,7 @@ prismjs/prism.js:
|
|
|
3663
3663
|
*)
|
|
3664
3664
|
*/
|
|
3665
3665
|
|
|
3666
|
-
const Container$
|
|
3666
|
+
const Container$E = styled(FlexRow) `
|
|
3667
3667
|
gap: 0;
|
|
3668
3668
|
`;
|
|
3669
3669
|
const Button$3 = styled.button `
|
|
@@ -3680,7 +3680,7 @@ const Button$3 = styled.button `
|
|
|
3680
3680
|
}
|
|
3681
3681
|
`;
|
|
3682
3682
|
const ToggleCodeComponent = ({ isPrettyMode, setIsPrettyMode }) => {
|
|
3683
|
-
return (React.createElement(Container$
|
|
3683
|
+
return (React.createElement(Container$E, null,
|
|
3684
3684
|
React.createElement(Button$3, { "$position": 'left', "$selected": isPrettyMode, onClick: () => setIsPrettyMode(true) },
|
|
3685
3685
|
React.createElement(ListIcon, null)),
|
|
3686
3686
|
React.createElement(Button$3, { "$position": 'right', "$selected": !isPrettyMode, onClick: () => setIsPrettyMode(false) },
|
|
@@ -3972,18 +3972,18 @@ const FadeLoader = ({ loading = true, color: clr, scale = 1, speedMultiplier = 1
|
|
|
3972
3972
|
} })));
|
|
3973
3973
|
};
|
|
3974
3974
|
|
|
3975
|
-
const Container$
|
|
3975
|
+
const Container$D = styled.div `
|
|
3976
3976
|
margin: ${({ $align }) => ($align === 'right' ? 'auto 6px auto auto' : $align === 'left' ? 'auto auto auto 6px' : 'auto')};
|
|
3977
3977
|
display: flex;
|
|
3978
3978
|
align-items: center;
|
|
3979
3979
|
justify-content: center;
|
|
3980
3980
|
`;
|
|
3981
3981
|
const ExtendArrow = ({ extend, size = 14, align = 'center' }) => {
|
|
3982
|
-
return (React.createElement(Container$
|
|
3982
|
+
return (React.createElement(Container$D, { "$align": align },
|
|
3983
3983
|
React.createElement(ExtendArrowIcon, { size: size, rotate: extend ? 180 : 0 })));
|
|
3984
3984
|
};
|
|
3985
3985
|
|
|
3986
|
-
const Container$
|
|
3986
|
+
const Container$C = styled.div `
|
|
3987
3987
|
border-radius: 24px;
|
|
3988
3988
|
background-color: ${({ theme, $status }) => $status === StatusType.Error
|
|
3989
3989
|
? theme.text.error + Theme.opacity.hex['010']
|
|
@@ -4039,7 +4039,7 @@ const ConditionDetails = ({ conditions: c, headerLabelError = 'Something Failed'
|
|
|
4039
4039
|
const headerSubText = `(${hasErrors ? errors.length : hasWarnings ? warnings.length : conditions.length}/${conditions.length})`;
|
|
4040
4040
|
const headerSubTextColor = hasErrors ? theme.text.error_secondary : hasWarnings ? theme.text.warning_secondary : theme.text.info_secondary;
|
|
4041
4041
|
const toggleExtend = useCallback(() => setExtend((prev) => !prev), []);
|
|
4042
|
-
return (React.createElement(Container$
|
|
4042
|
+
return (React.createElement(Container$C, { onClick: toggleExtend, "$status": overallStatus },
|
|
4043
4043
|
React.createElement(Header$2, null,
|
|
4044
4044
|
loading ? React.createElement(FadeLoader, null) : React.createElement(HeaderIcon, null),
|
|
4045
4045
|
React.createElement(Text, { color: headerTextColor, size: 14 }, headerText),
|
|
@@ -4076,7 +4076,7 @@ const Divider = ({ orientation = 'horizontal', type, thickness = 1, length, marg
|
|
|
4076
4076
|
return React.createElement(StyledDivider, { "$orientation": orientation, "$type": type, "$thickness": thickness, "$length": length, "$margin": margin });
|
|
4077
4077
|
};
|
|
4078
4078
|
|
|
4079
|
-
const Container$
|
|
4079
|
+
const Container$B = styled.div `
|
|
4080
4080
|
display: flex;
|
|
4081
4081
|
align-items: center;
|
|
4082
4082
|
gap: ${({ $size }) => $size / 3}px;
|
|
@@ -4105,7 +4105,7 @@ const Status = ({ title, subtitle, status = StatusType.Default, forceIcon: Force
|
|
|
4105
4105
|
: status === OtherStatus.Loading
|
|
4106
4106
|
? () => React.createElement(FadeLoader, { scale: 0.8 })
|
|
4107
4107
|
: () => getStatusIcon(statusType, theme)?.({ size: size + 2 });
|
|
4108
|
-
return (React.createElement(Container$
|
|
4108
|
+
return (React.createElement(Container$B, { "$status": statusType, "$width": width, "$size": size, "$withIcon": withIcon, "$withBorder": withBorder, "$withBackground": withBackground },
|
|
4109
4109
|
withIcon && (React.createElement(IconWrapper$4, null,
|
|
4110
4110
|
React.createElement(StatusIcon, null))),
|
|
4111
4111
|
(!!title || !!subtitle) && (React.createElement(TextWrapper$1, null,
|
|
@@ -4221,7 +4221,7 @@ const ImageControlled = ({ src = '', alt = '', size = 16 }) => {
|
|
|
4221
4221
|
return React.createElement(ImageErrorIcon, { size: size });
|
|
4222
4222
|
};
|
|
4223
4223
|
|
|
4224
|
-
const Container$
|
|
4224
|
+
const Container$A = styled.div `
|
|
4225
4225
|
display: flex;
|
|
4226
4226
|
align-items: center;
|
|
4227
4227
|
justify-content: center;
|
|
@@ -4234,10 +4234,10 @@ const Container$z = styled.div `
|
|
|
4234
4234
|
}};
|
|
4235
4235
|
`;
|
|
4236
4236
|
const IconWrapped = ({ icon: Icon, src = '', alt = '', status, size = 36 }) => {
|
|
4237
|
-
return (React.createElement(Container$
|
|
4237
|
+
return (React.createElement(Container$A, { "$status": status, "$size": size }, src ? React.createElement(ImageControlled, { src: src, alt: alt, size: size - 12 }) : !!Icon ? React.createElement(Icon, { size: size - 12 }) : React.createElement(ImageErrorIcon, { size: size - 12 })));
|
|
4238
4238
|
};
|
|
4239
4239
|
|
|
4240
|
-
const Container$
|
|
4240
|
+
const Container$z = styled.div `
|
|
4241
4241
|
position: relative;
|
|
4242
4242
|
display: flex;
|
|
4243
4243
|
flex-wrap: wrap;
|
|
@@ -4290,7 +4290,7 @@ const IconGroup = ({ icons = [], iconSrcs = [], status, size = 36, id }) => {
|
|
|
4290
4290
|
return imgSize * 1.15;
|
|
4291
4291
|
return imgSize * 1.15 * 0.5;
|
|
4292
4292
|
};
|
|
4293
|
-
return (React.createElement(Container$
|
|
4293
|
+
return (React.createElement(Container$z, { "$status": status, "$size": size }, icons.map((Icon, idx) => {
|
|
4294
4294
|
if (idx > 2)
|
|
4295
4295
|
return null;
|
|
4296
4296
|
return (React.createElement(IconWrapper$3, { key: `icon-${id}-${idx}`, "$status": status, "$size": imgSize * 1.5, "$top": getTopPosition(idx), "$left": getLeftPosition(idx), "$zIndex": idx + 1 }, idx === 2 && icons.length > 3 ? (React.createElement(Text, { family: 'secondary', color: theme.text.dark_grey, size: imgSize * 0.8 },
|
|
@@ -4321,7 +4321,7 @@ const MonitorsIcons = ({ monitors = defaultMonitors, withTooltips, withLabels, s
|
|
|
4321
4321
|
const ControlledVisibility$1 = styled.div `
|
|
4322
4322
|
visibility: hidden;
|
|
4323
4323
|
`;
|
|
4324
|
-
const Container$
|
|
4324
|
+
const Container$y = styled.div `
|
|
4325
4325
|
display: flex;
|
|
4326
4326
|
flex-direction: column;
|
|
4327
4327
|
align-self: stretch;
|
|
@@ -4380,7 +4380,7 @@ const DataTab = ({ title, subTitle, hoverText, onClick, renderActions, iconProps
|
|
|
4380
4380
|
setTextMaxWidth(containerWidth - widthOfNonTextContents);
|
|
4381
4381
|
}
|
|
4382
4382
|
}, [withCheckbox]);
|
|
4383
|
-
return (React.createElement(Container$
|
|
4383
|
+
return (React.createElement(Container$y, { ref: containerRef, "$status": status, "$faded": faded, "$bgColor": bgColor, "$bgColorHover": bgColorHover, "$withClick": !!onClick, onClick: onClick, ...props },
|
|
4384
4384
|
React.createElement(FlexRow, { "$gap": 8 },
|
|
4385
4385
|
React.createElement(FlexRow, { "$gap": 16 },
|
|
4386
4386
|
isCheckboxLoading ? React.createElement(FadeLoader, null) : withCheckbox ? React.createElement(Checkbox, { value: isChecked, onChange: onCheckboxChange, disabled: isCheckboxDisabled }) : null,
|
|
@@ -4406,7 +4406,7 @@ const DataTab = ({ title, subTitle, hoverText, onClick, renderActions, iconProps
|
|
|
4406
4406
|
renderExtended()))));
|
|
4407
4407
|
};
|
|
4408
4408
|
|
|
4409
|
-
const Container$
|
|
4409
|
+
const Container$x = styled(FlexRow) `
|
|
4410
4410
|
width: 100%;
|
|
4411
4411
|
justify-content: space-between;
|
|
4412
4412
|
`;
|
|
@@ -4429,7 +4429,7 @@ const ValueText = styled(Text) `
|
|
|
4429
4429
|
text-align: right;
|
|
4430
4430
|
`;
|
|
4431
4431
|
const DescribeRow = ({ title, subTitle, tooltip, value }) => {
|
|
4432
|
-
return (React.createElement(Container$
|
|
4432
|
+
return (React.createElement(Container$x, null,
|
|
4433
4433
|
React.createElement(FlexColumn, { "$gap": 4 },
|
|
4434
4434
|
React.createElement(Tooltip, { text: tooltip || '' },
|
|
4435
4435
|
title && React.createElement(Title$b, null, title),
|
|
@@ -16420,7 +16420,7 @@ function ResizeControl({ nodeId, position, variant = ResizeControlVariant.Handle
|
|
|
16420
16420
|
*/
|
|
16421
16421
|
memo(ResizeControl);
|
|
16422
16422
|
|
|
16423
|
-
const Container$
|
|
16423
|
+
const Container$w = styled(FlexColumn) `
|
|
16424
16424
|
align-items: center !important;
|
|
16425
16425
|
justify-content: center;
|
|
16426
16426
|
align-self: stretch;
|
|
@@ -16457,7 +16457,7 @@ const AddNode = memo(({ id: nodeId, data }) => {
|
|
|
16457
16457
|
const { isThisPending } = usePendingStore();
|
|
16458
16458
|
const entity = nodeId.split('-')[0];
|
|
16459
16459
|
const isPending = isThisPending({ entityType: entity });
|
|
16460
|
-
return (React.createElement(Container$
|
|
16460
|
+
return (React.createElement(Container$w, { "$nodeWidth": nodeWidth, className: 'nowheel nodrag' },
|
|
16461
16461
|
isPending ? (React.createElement(Fragment, null,
|
|
16462
16462
|
React.createElement(TitleWrapper$1, null,
|
|
16463
16463
|
React.createElement(FadeLoader, null),
|
|
@@ -16475,7 +16475,7 @@ const AddNode = memo(({ id: nodeId, data }) => {
|
|
|
16475
16475
|
});
|
|
16476
16476
|
AddNode.displayName = AddNode.name;
|
|
16477
16477
|
|
|
16478
|
-
const Container$
|
|
16478
|
+
const Container$v = styled.div `
|
|
16479
16479
|
width: ${({ $nodeWidth }) => `${$nodeWidth}px`};
|
|
16480
16480
|
`;
|
|
16481
16481
|
const BaseNode = memo(({ id: nodeId, data }) => {
|
|
@@ -16508,7 +16508,7 @@ const BaseNode = memo(({ id: nodeId, data }) => {
|
|
|
16508
16508
|
}
|
|
16509
16509
|
setSelectedSources(namespaces);
|
|
16510
16510
|
};
|
|
16511
|
-
return (React.createElement(Container$
|
|
16511
|
+
return (React.createElement(Container$v, { "data-id": nodeId, "$nodeWidth": nodeWidth, className: 'nowheel nodrag' },
|
|
16512
16512
|
React.createElement(DataTab, { title: title, subTitle: subTitle, onClick: () => { }, renderActions: renderActions, iconProps: {
|
|
16513
16513
|
icon: icon,
|
|
16514
16514
|
icons: icons,
|
|
@@ -16529,20 +16529,20 @@ const BaseNode = memo(({ id: nodeId, data }) => {
|
|
|
16529
16529
|
});
|
|
16530
16530
|
BaseNode.displayName = BaseNode.name;
|
|
16531
16531
|
|
|
16532
|
-
const Container$
|
|
16532
|
+
const Container$u = styled.div `
|
|
16533
16533
|
width: ${({ $nodeWidth }) => `${$nodeWidth}px`};
|
|
16534
16534
|
height: ${({ $nodeHeight }) => `${$nodeHeight}px`};
|
|
16535
16535
|
opacity: 0;
|
|
16536
16536
|
`;
|
|
16537
16537
|
const EdgedNode = memo(({ data }) => {
|
|
16538
16538
|
const { nodeWidth, nodeHeight } = data;
|
|
16539
|
-
return (React.createElement(Container$
|
|
16539
|
+
return (React.createElement(Container$u, { "$nodeWidth": nodeWidth, "$nodeHeight": nodeHeight, className: 'nowheel nodrag' },
|
|
16540
16540
|
React.createElement(Handle, { type: 'source', position: Position.Right, style: { visibility: 'hidden' } }),
|
|
16541
16541
|
React.createElement(Handle, { type: 'target', position: Position.Left, style: { visibility: 'hidden' } })));
|
|
16542
16542
|
});
|
|
16543
16543
|
EdgedNode.displayName = EdgedNode.name;
|
|
16544
16544
|
|
|
16545
|
-
const Container$
|
|
16545
|
+
const Container$t = styled.div `
|
|
16546
16546
|
width: ${({ $nodeWidth }) => $nodeWidth}px;
|
|
16547
16547
|
height: ${({ $nodeHeight }) => $nodeHeight}px;
|
|
16548
16548
|
background: transparent;
|
|
@@ -16551,14 +16551,14 @@ const Container$s = styled.div `
|
|
|
16551
16551
|
`;
|
|
16552
16552
|
const FrameNode = memo(({ data }) => {
|
|
16553
16553
|
const { nodeWidth, nodeHeight } = data;
|
|
16554
|
-
return (React.createElement(Container$
|
|
16554
|
+
return (React.createElement(Container$t, { "$nodeWidth": nodeWidth, "$nodeHeight": nodeHeight, className: 'nowheel nodrag' },
|
|
16555
16555
|
React.createElement(Handle, { type: 'source', position: Position.Right, style: { visibility: 'hidden' } }),
|
|
16556
16556
|
React.createElement(Handle, { type: 'target', position: Position.Left, style: { visibility: 'hidden' } })));
|
|
16557
16557
|
});
|
|
16558
16558
|
FrameNode.displayName = FrameNode.name;
|
|
16559
16559
|
|
|
16560
16560
|
const { framePadding } = nodeConfig;
|
|
16561
|
-
const Container$
|
|
16561
|
+
const Container$s = styled.div `
|
|
16562
16562
|
position: relative;
|
|
16563
16563
|
z-index: 1;
|
|
16564
16564
|
width: fit-content;
|
|
@@ -16606,7 +16606,7 @@ const ScrollNode = memo(({ data, ...rest }) => {
|
|
|
16606
16606
|
current?.addEventListener('scroll', handleScroll);
|
|
16607
16607
|
return () => current?.removeEventListener('scroll', handleScroll);
|
|
16608
16608
|
}, [onScroll]);
|
|
16609
|
-
return (React.createElement(Container$
|
|
16609
|
+
return (React.createElement(Container$s, { ref: containerRef, "$nodeHeight": nodeHeight, className: 'nowheel nodrag' },
|
|
16610
16610
|
items.map((item) => (React.createElement(BaseNodeWrapper, { key: item.id, onClick: (e) => {
|
|
16611
16611
|
e.stopPropagation();
|
|
16612
16612
|
// @ts-expect-error - expects an event, but we don't need it, so undefined is fine, also expects full node, we only need the given values
|
|
@@ -16629,7 +16629,7 @@ const IconTitleBadge = ({ icon: Icon, title, badge, badgeTooltip, loading }) =>
|
|
|
16629
16629
|
loading && React.createElement(FadeLoader, null)));
|
|
16630
16630
|
};
|
|
16631
16631
|
|
|
16632
|
-
const Container$
|
|
16632
|
+
const Container$r = styled.div `
|
|
16633
16633
|
position: relative;
|
|
16634
16634
|
width: ${({ $nodeWidth }) => `${$nodeWidth}px`};
|
|
16635
16635
|
padding: 12px 0px 16px 0px;
|
|
@@ -16695,7 +16695,7 @@ const HeaderNode = memo(({ id: nodeId, data }) => {
|
|
|
16695
16695
|
setSelectedSources({});
|
|
16696
16696
|
}
|
|
16697
16697
|
};
|
|
16698
|
-
return (React.createElement(Container$
|
|
16698
|
+
return (React.createElement(Container$r, { "$nodeWidth": nodeWidth, className: 'nowheel nodrag' },
|
|
16699
16699
|
entityType === EntityTypes.Source && (React.createElement(SelectorWrapper, null,
|
|
16700
16700
|
React.createElement(Checkbox, { partiallyChecked: hasSelected && sources?.length !== totalSelectedSources, value: hasSelected && sources?.length === totalSelectedSources, onChange: onSelect, disabled: !sources?.length }))),
|
|
16701
16701
|
React.createElement(IconTitleBadge, { icon: Icon, title: title, badge: isSourceAwaitingInstrumentation ? `${instrumentingPercent}%` : badge, badgeTooltip: badgeTooltip, loading: isFetching && !isSourceAwaitingInstrumentation }),
|
|
@@ -16726,7 +16726,7 @@ const Actions = memo(({ entityType }) => {
|
|
|
16726
16726
|
HeaderNode.displayName = HeaderNode.name;
|
|
16727
16727
|
Actions.displayName = Actions.name;
|
|
16728
16728
|
|
|
16729
|
-
const Container$
|
|
16729
|
+
const Container$q = styled(FlexColumn) `
|
|
16730
16730
|
max-width: 300px;
|
|
16731
16731
|
padding: 12px;
|
|
16732
16732
|
border-radius: 12px;
|
|
@@ -16735,7 +16735,7 @@ const Container$p = styled(FlexColumn) `
|
|
|
16735
16735
|
`;
|
|
16736
16736
|
const NoDataNode = memo(({ id: nodeId, data }) => {
|
|
16737
16737
|
const { title, subTitle } = data;
|
|
16738
|
-
return (React.createElement(Container$
|
|
16738
|
+
return (React.createElement(Container$q, { "data-id": nodeId },
|
|
16739
16739
|
React.createElement(NoDataFound, { title: title, subTitle: subTitle })));
|
|
16740
16740
|
});
|
|
16741
16741
|
NoDataNode.displayName = NoDataNode.name;
|
|
@@ -16775,7 +16775,7 @@ const LabeledEdge = memo(({ id, sourceX, sourceY, targetX, targetY, sourcePositi
|
|
|
16775
16775
|
});
|
|
16776
16776
|
LabeledEdge.displayName = LabeledEdge.name;
|
|
16777
16777
|
|
|
16778
|
-
const Container$
|
|
16778
|
+
const Container$p = styled.div `
|
|
16779
16779
|
padding: 6px;
|
|
16780
16780
|
border-radius: 12px;
|
|
16781
16781
|
background-color: ${({ theme }) => theme.colors.dropdown_bg};
|
|
@@ -16817,7 +16817,7 @@ const MapItemNode = memo(({ id: nodeId, data }) => {
|
|
|
16817
16817
|
React.createElement(Handle, { type: 'source', position: Position.Right, style: { visibility: 'hidden' } }),
|
|
16818
16818
|
React.createElement(Handle, { type: 'target', position: Position.Left, style: { visibility: 'hidden' } }),
|
|
16819
16819
|
React.createElement(Relative$1, { "data-id": nodeId },
|
|
16820
|
-
React.createElement(Container$
|
|
16820
|
+
React.createElement(Container$p, null,
|
|
16821
16821
|
React.createElement(IconGroup, { id: serviceId, icons: icons, status: status })),
|
|
16822
16822
|
React.createElement(AbsoluteTitle, null,
|
|
16823
16823
|
StatusIcon && React.createElement(StatusIcon, null),
|
|
@@ -16836,7 +16836,7 @@ const MapItemNode = memo(({ id: nodeId, data }) => {
|
|
|
16836
16836
|
});
|
|
16837
16837
|
MapItemNode.displayName = MapItemNode.name;
|
|
16838
16838
|
|
|
16839
|
-
const Container$
|
|
16839
|
+
const Container$o = styled.div `
|
|
16840
16840
|
display: flex;
|
|
16841
16841
|
flex-direction: column;
|
|
16842
16842
|
gap: 16px;
|
|
@@ -16868,19 +16868,19 @@ const Line = styled.div `
|
|
|
16868
16868
|
border-radius: 4px;
|
|
16869
16869
|
`;
|
|
16870
16870
|
const SkeletonLoader = ({ size = 5, maxWidth }) => {
|
|
16871
|
-
return (React.createElement(Container$
|
|
16871
|
+
return (React.createElement(Container$o, { "$maxWidth": maxWidth }, [...Array(size)].map((_, index) => (React.createElement(SkeletonItem, { key: index },
|
|
16872
16872
|
React.createElement(Thumbnail, null),
|
|
16873
16873
|
React.createElement(LineWrapper, null,
|
|
16874
16874
|
React.createElement(Line, { "$width": '80%' }),
|
|
16875
16875
|
React.createElement(Line, { "$width": '100%' })))))));
|
|
16876
16876
|
};
|
|
16877
16877
|
|
|
16878
|
-
const Container$
|
|
16878
|
+
const Container$n = styled.div `
|
|
16879
16879
|
width: ${({ $nodeWidth }) => `${$nodeWidth}px`};
|
|
16880
16880
|
`;
|
|
16881
16881
|
const SkeletonNode = memo(({ id: nodeId, data }) => {
|
|
16882
16882
|
const { nodeWidth } = data;
|
|
16883
|
-
return (React.createElement(Container$
|
|
16883
|
+
return (React.createElement(Container$n, { "data-id": nodeId, "$nodeWidth": nodeWidth, className: 'nowheel nodrag' },
|
|
16884
16884
|
React.createElement(SkeletonLoader, { size: 3 })));
|
|
16885
16885
|
});
|
|
16886
16886
|
SkeletonNode.displayName = SkeletonNode.name;
|
|
@@ -17047,7 +17047,7 @@ const TableRow = ({ index, columns, cells, onClick, status, faded }) => {
|
|
|
17047
17047
|
})));
|
|
17048
17048
|
};
|
|
17049
17049
|
|
|
17050
|
-
const Container$
|
|
17050
|
+
const Container$m = styled.div `
|
|
17051
17051
|
width: 100%;
|
|
17052
17052
|
`;
|
|
17053
17053
|
const Table = styled.table `
|
|
@@ -17121,7 +17121,7 @@ const InteractiveTable = ({ columns, rows }) => {
|
|
|
17121
17121
|
})
|
|
17122
17122
|
: rows).map(({ status, faded, cells, onClick }, i) => React.createElement(TableRow, { key: `row-${i}`, index: i, columns: columns, cells: cells, onClick: onClick, status: status, faded: faded }));
|
|
17123
17123
|
}, [columns, rows, sortBy, sortDirection]);
|
|
17124
|
-
return (React.createElement(Container$
|
|
17124
|
+
return (React.createElement(Container$m, null,
|
|
17125
17125
|
React.createElement(Table, null,
|
|
17126
17126
|
React.createElement(TableHead, null,
|
|
17127
17127
|
React.createElement("tr", null, columns.map(({ key, title, sortable }) => (React.createElement(TableTitle, { key: `column-${key}` }, sortable ? (React.createElement(SortClickable, { onClick: () => onSort(key) },
|
|
@@ -17265,7 +17265,7 @@ const DataCard = ({ title = 'Details', titleBadge, description, action: Action,
|
|
|
17265
17265
|
const ControlledVisibility = styled.div `
|
|
17266
17266
|
visibility: hidden;
|
|
17267
17267
|
`;
|
|
17268
|
-
const Container$
|
|
17268
|
+
const Container$l = styled(FlexRow) `
|
|
17269
17269
|
align-self: stretch;
|
|
17270
17270
|
width: calc(100% - 32px);
|
|
17271
17271
|
padding: 16px;
|
|
@@ -17312,7 +17312,7 @@ const DataFinger = ({ title, subTitle, icons, iconSrcs, onClick, renderActions }
|
|
|
17312
17312
|
setTextMaxWidth(containerWidth - widthOfNonTextContents);
|
|
17313
17313
|
}
|
|
17314
17314
|
}, []);
|
|
17315
|
-
return (React.createElement(Container$
|
|
17315
|
+
return (React.createElement(Container$l, { ref: containerRef, "$gap": 8, "$withClick": !!onClick, onClick: onClick },
|
|
17316
17316
|
React.createElement(IconGroup, { id: `${title}-${subTitle}`, icons: icons, iconSrcs: iconSrcs }),
|
|
17317
17317
|
title && React.createElement(ScrollX, { maxWidth: textMaxWidth / 2, text: title, textSize: 14 }),
|
|
17318
17318
|
title && subTitle && React.createElement(SubText, null, "\u2022"),
|
|
@@ -17337,6 +17337,27 @@ const DocsButton = ({ endpoint = '/', variant = 'secondary' }) => {
|
|
|
17337
17337
|
"Docs"));
|
|
17338
17338
|
};
|
|
17339
17339
|
|
|
17340
|
+
const Container$k = styled(FlexRow) `
|
|
17341
|
+
border-bottom: ${({ $hideBorder, theme }) => ($hideBorder ? 'none' : `1px solid ${theme.colors.border}`)};
|
|
17342
|
+
`;
|
|
17343
|
+
const Tab = styled(Text) `
|
|
17344
|
+
padding: 12px;
|
|
17345
|
+
font-size: 14px;
|
|
17346
|
+
color: ${({ theme, $selected }) => ($selected ? theme.text.secondary : theme.text.grey)};
|
|
17347
|
+
border-bottom: 2px solid ${({ theme, $selected }) => ($selected ? theme.colors.majestic_blue : 'transparent')};
|
|
17348
|
+
cursor: pointer;
|
|
17349
|
+
display: flex;
|
|
17350
|
+
align-items: center;
|
|
17351
|
+
gap: 8px;
|
|
17352
|
+
`;
|
|
17353
|
+
const TabList = ({ tabs, hideBorder = false }) => {
|
|
17354
|
+
if (!tabs?.length)
|
|
17355
|
+
return null;
|
|
17356
|
+
return (React.createElement(Container$k, { "$hideBorder": hideBorder }, tabs.map(({ label, icon: Icon, onClick, selected }) => (React.createElement(Tab, { key: `tab-${label}`, onClick: onClick, "$selected": selected },
|
|
17357
|
+
label,
|
|
17358
|
+
Icon && React.createElement(Icon, null))))));
|
|
17359
|
+
};
|
|
17360
|
+
|
|
17340
17361
|
const Container$j = styled.section `
|
|
17341
17362
|
padding: 0px 32px;
|
|
17342
17363
|
border-bottom: 1px solid ${({ theme }) => theme.colors.border};
|
|
@@ -17348,7 +17369,6 @@ const TopRow = styled.div `
|
|
|
17348
17369
|
flex-shrink: 0;
|
|
17349
17370
|
align-self: stretch;
|
|
17350
17371
|
`;
|
|
17351
|
-
const BottomRow = styled(FlexRow) ``;
|
|
17352
17372
|
const SectionItemsWrapper = styled.div `
|
|
17353
17373
|
display: flex;
|
|
17354
17374
|
align-items: center;
|
|
@@ -17366,17 +17386,7 @@ const ActionButton$1 = styled(Button$4) `
|
|
|
17366
17386
|
gap: 8px;
|
|
17367
17387
|
`;
|
|
17368
17388
|
const CloseButton = styled(Button$4) ``;
|
|
17369
|
-
const
|
|
17370
|
-
padding: 12px;
|
|
17371
|
-
font-size: 14px;
|
|
17372
|
-
color: ${({ theme, $selected }) => ($selected ? theme.text.secondary : theme.text.grey)};
|
|
17373
|
-
border-bottom: 2px solid ${({ theme, $selected }) => ($selected ? theme.colors.majestic_blue : 'transparent')};
|
|
17374
|
-
cursor: pointer;
|
|
17375
|
-
display: flex;
|
|
17376
|
-
align-items: center;
|
|
17377
|
-
gap: 8px;
|
|
17378
|
-
`;
|
|
17379
|
-
const DrawerHeader = ({ onClose, icons, iconSrcs, title, titleTooltip, replaceTitleWith: ReplaceTitleWith, actionButtons = [], tabs }) => {
|
|
17389
|
+
const DrawerHeader = ({ onClose, icons, iconSrcs, title, titleTooltip, replaceTitleWith: ReplaceTitleWith, actions, actionButtons = [], tabs }) => {
|
|
17380
17390
|
const renderReplaceTitleWith = () => {
|
|
17381
17391
|
if (typeof ReplaceTitleWith === 'function') {
|
|
17382
17392
|
return React.createElement(ReplaceTitleWith, null);
|
|
@@ -17392,12 +17402,11 @@ const DrawerHeader = ({ onClose, icons, iconSrcs, title, titleTooltip, replaceTi
|
|
|
17392
17402
|
icons?.length || iconSrcs?.length ? React.createElement(IconGroup, { icons: icons, iconSrcs: iconSrcs, id: `drawer-header-${title}` }) : null,
|
|
17393
17403
|
renderReplaceTitleWith() || (React.createElement(Tooltip, { text: titleTooltip, withIcon: true }, title && React.createElement(Title$6, null, title)))),
|
|
17394
17404
|
React.createElement(SectionItemsWrapper, { "$gap": 2 },
|
|
17405
|
+
actions,
|
|
17395
17406
|
actionButtons.map((btn, i) => (React.createElement(ActionButton$1, { key: `header-action-button-${i}`, ...btn }))),
|
|
17396
17407
|
React.createElement(CloseButton, { "data-id": 'drawer-close', variant: 'secondary', onClick: onClose },
|
|
17397
17408
|
React.createElement(XIcon, { size: 12 })))),
|
|
17398
|
-
|
|
17399
|
-
label,
|
|
17400
|
-
Icon && React.createElement(Icon, null))))))));
|
|
17409
|
+
React.createElement(TabList, { tabs: tabs, hideBorder: true })));
|
|
17401
17410
|
};
|
|
17402
17411
|
|
|
17403
17412
|
const Container$i = styled.div `
|
|
@@ -38389,4 +38398,4 @@ const WarningModal = ({ isOpen, noOverlay, title = '', description = '', note, a
|
|
|
38389
38398
|
React.createElement(FooterButton, { "data-id": 'deny', variant: denyButton.variant || 'secondary', onClick: onDeny }, denyButton.text)))));
|
|
38390
38399
|
};
|
|
38391
38400
|
|
|
38392
|
-
export {
|
|
38401
|
+
export { TextArea as $, AutocompleteInput as A, Button$4 as B, Checkbox as C, DataCard as D, ExtendArrow as E, FadeLoader as F, MonitorsIcons as G, Header as H, IconButton as I, NoDataFound as J, KeyValueInputsList as K, NotificationNote as L, Modal as M, NavigationButtons as N, PopupForm as O, Popup as P, SectionTitle as Q, Segment as R, ScrollX as S, ToggleCodeComponent as T, SelectionButton as U, SkeletonLoader as V, Status as W, Stepper as X, TabList as Y, Tag as Z, Text as _, Badge as a, Toggle as a0, Tooltip as a1, TraceLoader as a2, WarningModal as a3, FlexRow as a4, FlexColumn as a5, CenterThis as a6, VerticalScroll as a7, Overlay as a8, ModalBody as a9, TableContainer as aa, TableTitleWrap as ab, TableWrap as ac, nodeConfig as ad, useNodesState as ae, useEdgesState as af, Flow as ag, applyNodeChanges as ah, AddButton$1 as ai, MarkerType as aj, CopyText as ak, PodContainer as al, SourceContainer as am, AddNode as an, BaseNode as ao, EdgedNode as ap, FrameNode as aq, HeaderNode as ar, MapItemNode as as, NoDataNode as at, ScrollNode as au, SkeletonNode as av, LabeledEdge as aw, Code as b, ConditionDetails as c, DataCardFields as d, DataCardFieldTypes as e, DataFinger as f, DataTab as g, DescribeRow as h, Divider as i, DocsButton as j, Drawer as k, DrawerHeader as l, DrawerFooter as m, Dropdown as n, FieldError as o, FieldLabel as p, IconGroup as q, IconTitleBadge as r, IconWrapped as s, IconsNav as t, ImageControlled as u, Input as v, InputList as w, InputTable as x, InteractiveTable as y, MonitorsCheckboxes as z };
|
package/lib/snippets.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { B as Button,
|
|
2
|
-
export {
|
|
1
|
+
import { B as Button, _ as Text, L as NotificationNote } from './index-eb5688cd.js';
|
|
2
|
+
export { ai as AddButton, an as AddNode, ao as BaseNode, ak as CopyText, ap as EdgedNode, ag as Flow, aq as FrameNode, ar as HeaderNode, aw as LabeledEdge, as as MapItemNode, at as NoDataNode, al as PodContainer, au as ScrollNode, av as SkeletonNode, am as SourceContainer, ad as nodeConfig } from './index-eb5688cd.js';
|
|
3
3
|
import React from 'react';
|
|
4
4
|
import { T as Theme, B as BUTTON_TEXTS, b as DISPLAY_TITLES } from './index-e9b26c29.js';
|
|
5
5
|
import { E as EditIcon } from './index-0001f711.js';
|